Skip to content

Commit

Permalink
Merge pull request #24 from yumiguan/feature/update-primary-color
Browse files Browse the repository at this point in the history
feature/update-primary-color
  • Loading branch information
yumiguan authored Dec 29, 2021
2 parents 658e8db + 1e11447 commit 66d0957
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/BugTemplateSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export default {
<style scoped>
.split-left-template-selector {
padding-right: 10px;
background-color: #f8f8f9;
background-color: #ffffff;
}
.split-left-template-selector .ivu-form-item {
margin-bottom: 0px;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Bugit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default {
} else if (event.key === 's') {
if (this.metaKey) {
window.event.preventDefault()
this.$store.commit('setShownDraftNameModal', true)
this.$store.dispatch('saveCache')
}
} else if (event.key === 'Enter' && this.$store.state.form.shownDraftNameModal) {
this.$store.dispatch('saveCache')
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/event/ChannelColumn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
computed: {
bgColor () {
if (this.channel === 'flow') {
return '#0fccbf'
return '#5F5CCA'
} else if (this.channel === 'notice') {
return '#ff9900'
} else if (this.channel === 'snapshot') {
Expand All @@ -30,6 +30,6 @@ export default {
return '#808695'
}
}
},
}
}
</script>
2 changes: 1 addition & 1 deletion frontend/src/store/form.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export default {
api.setCache(template.id, template.path, state.createName, state.templateDetail)
.then(response => {
if (response.data.code === 1000) {
bus.$emit('msg.success', 'Save as draft ' + state.createName + ', success')
bus.$emit('msg.success', 'Save draft ' + state.createName + ' success!')
commit('setSelectedCache', state.createName)
commit('setShownDraftNameModal', false)
dispatch('loadTemplate')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='lyrebird-bugit',
version='1.8.1',
version='1.8.2',
packages=['lyrebird_bugit'],
url='https://github.com/Meituan-Dianping/lyrebird-bugit',
author='HBQA',
Expand Down

0 comments on commit 66d0957

Please sign in to comment.