Browse Source

Fix pug

pull/291/head
Clemens Wolff 5 years ago
committed by Federica Nocera
parent
commit
b2848b089d
1 changed files with 14 additions and 6 deletions
  1. 20
      app/server/static/components/label.vue

20
app/server/static/components/label.vue

@ -54,9 +54,13 @@
div.control
div.form__field
div.form__input
swatches(v-model="newLabel.background_color", colors="basic", \
show-fallback=true, popover-to="", :trigger-style="{ \
width: '36px', height: '36px' }")
swatches(
v-model="newLabel.background_color"
colors="basic"
show-fallback=true
popover-to=""
v-bind:trigger-style="{ width: '36px', height: '36px' }"
)
div.control
a.button.random-color-button(
v-on:click="setColor(newLabel)"
@ -148,9 +152,13 @@
div.control
div.form__field
div.form__input
swatches(v-model="label.background_color", colors="basic", \
show-fallback=true, popover-to="", :trigger-style="{ \
width: '36px', height: '36px' }")
swatches(
v-model="label.background_color"
colors="basic"
show-fallback=true
popover-to=""
v-bind:trigger-style="{ width: '36px', height: '36px' }"
)
div.control
a.button.random-color-button(
v-on:click="setColor(newLabel)"

Loading…
Cancel
Save