diff --git a/frontend/CHANGELOG.md b/frontend/CHANGELOG.md
index cd94c37e68..daafe85fb4 100644
--- a/frontend/CHANGELOG.md
+++ b/frontend/CHANGELOG.md
@@ -112,8 +112,8 @@ The latest version of this document is always available in
- feat: added time-ago to toggle-list
- feat: Add stale marking of feature toggles
- feat: add support for toggle type (#220)
-- feat: stort by stale
-- fix: imporve type-chip color
+- feat: sort by stale
+- fix: improve type-chip color
- fix: some ux cleanup for toggle types
# [3.4.0]
@@ -124,7 +124,7 @@ The latest version of this document is always available in
- fix: upgrade react-dnd to version 11.1.3
- fix: Update react-dnd to the latest version 🚀 (#213)
- fix: read unleash version from ui-config (#219)
-- fix: flag inital context fields
+- fix: flag initial context fields
# [3.3.5]
diff --git a/frontend/public/favicon.ico b/frontend/public/favicon.ico
index fed2443a05..857aef80d5 100644
Binary files a/frontend/public/favicon.ico and b/frontend/public/favicon.ico differ
diff --git a/frontend/public/favicon_old.ico b/frontend/public/favicon_old.ico
new file mode 100644
index 0000000000..fed2443a05
Binary files /dev/null and b/frontend/public/favicon_old.ico differ
diff --git a/frontend/public/logo.png b/frontend/public/logo.png
index 97e9ef9e8c..27ff43307c 100644
Binary files a/frontend/public/logo.png and b/frontend/public/logo.png differ
diff --git a/frontend/public/logo_old.png b/frontend/public/logo_old.png
new file mode 100644
index 0000000000..97e9ef9e8c
Binary files /dev/null and b/frontend/public/logo_old.png differ
diff --git a/frontend/src/component/addons/form-addon-container.js b/frontend/src/component/addons/form-addon-container.js
index 01f2e456d5..8631f5d4a6 100644
--- a/frontend/src/component/addons/form-addon-container.js
+++ b/frontend/src/component/addons/form-addon-container.js
@@ -3,7 +3,7 @@ import FormComponent from './form-addon-component';
import { updateAddon, createAddon, fetchAddons } from '../../store/addons/actions';
import { cloneDeep } from 'lodash';
-// Required for to fill the inital form.
+// Required for to fill the initial form.
const DEFAULT_DATA = {
provider: '',
description: '',
diff --git a/frontend/src/component/application/application-list-component.js b/frontend/src/component/application/application-list-component.js
index 976d5de7a4..46416be213 100644
--- a/frontend/src/component/application/application-list-component.js
+++ b/frontend/src/component/application/application-list-component.js
@@ -13,8 +13,8 @@ const Empty = () => (
you will require a Client SDK.
- You can read more about the available Client SDKs in the{' '}
- documentation.
+ You can read more about how to use Unleash in your application in the{' '}
+ documentation.
);
diff --git a/frontend/src/component/common/flags.js b/frontend/src/component/common/flags.js
new file mode 100644
index 0000000000..d365a4c113
--- /dev/null
+++ b/frontend/src/component/common/flags.js
@@ -0,0 +1,2 @@
+export const P = 'P';
+export const C = 'C';
diff --git a/frontend/src/component/common/index.js b/frontend/src/component/common/index.js
index 09b1fba230..5e207a462a 100644
--- a/frontend/src/component/common/index.js
+++ b/frontend/src/component/common/index.js
@@ -140,14 +140,15 @@ IconLink.propTypes = {
icon: PropTypes.string,
};
-export const DropdownButton = ({ label, id, className = styles.dropdownButton, title }) => (
-