Merge remote-tracking branch 'upstream/main' into bulma-css-variables
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
Adrian Simmons 2021-11-04 17:25:37 +00:00
commit d0438732cb
3 changed files with 10 additions and 13 deletions

View File

@ -148,3 +148,9 @@ export default {
}, },
} }
</script> </script>
<style lang="scss" scoped>
.tag {
margin: .5rem 0 0 .5rem;
}
</style>

View File

@ -223,13 +223,12 @@ export default {
const labelAddsToWaitFor = parsedLabels.map(async labelTitle => { const labelAddsToWaitFor = parsedLabels.map(async labelTitle => {
let label = validateLabel(labels, labelTitle) let label = validateLabel(labels, labelTitle)
if (typeof label !== 'undefined') { if (typeof label === 'undefined') {
return label // label not found, create it
const labelModel = new LabelModel({title: labelTitle})
label = await dispatch('labels/createLabel', labelModel, {root: true})
} }
// label not found, create it
const labelModel = new LabelModel({title: labelTitle})
await dispatch('labels/createLabel', labelModel, {root: true})
return addLabelToTask(task, label) return addLabelToTask(task, label)
}) })

View File

@ -5,14 +5,6 @@
.notifications { .notifications {
left: 0.5rem !important; left: 0.5rem !important;
bottom: 1rem !important; bottom: 1rem !important;
.notification-wrapper .notification {
border-radius: 0;
border-top-width: 0;
border-right-width: 0;
border-bottom-width: 0;
border-left-width: 0.4rem;
}
} }
.message .message-body { .message .message-body {