Skip to content

Commit

Permalink
Light mode and Dark mode require two different colors when there are …
Browse files Browse the repository at this point in the history
…not notifications (#866)
  • Loading branch information
paulr34 authored Dec 21, 2022
1 parent 13c2a63 commit fedcdb4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/layouts/ZclConfiguratorLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,7 @@ export default {
getNotifications() {
this.$serverGet(restApi.uri.notification)
.then((resp) => {
if (resp.data[0] === undefined) {
this.notification = 'white'
} else {
if (resp.data[0] != undefined) {
this.notification = 'red'
}
})
Expand Down

0 comments on commit fedcdb4

Please sign in to comment.