Skip to content

Commit

Permalink
fix(group plans): create btn class
Browse files Browse the repository at this point in the history
  • Loading branch information
paglias committed Jul 30, 2019
1 parent 3a0aa4a commit dc15328
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/client/components/group-plans/taskInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
.create-task-area.d-flex(v-if='canCreateTasks')
transition(name="slide-tasks-btns")
.d-flex(v-if="openCreateBtn")
.create-task-btn.rounded-btn(
.create-task-btn.diamond-btn(
v-for="type in columns",
:key="type",
@click="createTask(type)",
v-b-tooltip.hover.bottom="$t(type)",
)
.svg-icon(v-html="icons[type]", :class='`icon-${type}`')

#create-task-btn.create-btn.rounded-btn.btn.btn-success(
#create-task-btn.create-btn.diamond-btn.btn.btn-success(
@click="openCreateBtn = !openCreateBtn",
:class="{open: openCreateBtn}",
)
Expand Down

0 comments on commit dc15328

Please sign in to comment.