Skip to content

Commit

Permalink
fix(admin(vue)): modify markup for regression from #6239
Browse files Browse the repository at this point in the history
  • Loading branch information
satkunas committed Apr 29, 2021
1 parent e784def commit 02b8240
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<b-card no-body>
<b-card-header>
<b-button-close @click="onClose" v-b-tooltip.hover.left.d300 :title="$t('Close [ESC]')"><icon name="times"/></b-button-close>
<h4 class="d-inline mb-0" v-html="title.value"/>
<b-badge v-if="titleBadge" class="ml-2" variant="secondary" v-t="titleBadge.value" />
<h4 class="d-inline mb-0">{{ title }}</h4>
<b-badge v-if="titleBadge" class="ml-2" variant="secondary">{{ titleBadge }}</b-badge>
<slot name="headerAppend" v-if="$scopedSlots.headerAppend" v-bind="scopedSlotProps" />
</b-card-header>
<b-form @submit.prevent="onSave" ref="rootRef">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<b-card no-body>
<b-card-header>
<h4 class="d-inline mb-0" v-html="title.value"/>
<h4 class="d-inline mb-0">{{ title }}</h4>
<base-button-help v-if="titleHelp"
class="ml-1" :url="titleHelp" />
</b-card-header>
Expand Down

0 comments on commit 02b8240

Please sign in to comment.