summaryrefslogtreecommitdiff
path: root/src/views
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-03-04 21:08:59 +0300
committerGunnar Mills <gmills@us.ibm.com>2020-03-05 21:27:17 +0300
commitf12e0607f2c1c13113180cfba23bffe837b5c109 (patch)
tree3044b358c79b9907b1fce714b6f8e4c07f5e884a /src/views
parentfb78d1913312e5665588d3908249e8475f914040 (diff)
downloadwebui-vue-f12e0607f2c1c13113180cfba23bffe837b5c109.tar.xz
Fix float-right mixin build warning
Bootstrap Sass mixin float-right is deprecated, swapped to use utitlity class instead. This will fix warning: WARNING: The `float-right` mixin has been deprecated as of v4.3.0. It will be removed entirely in v5. Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: Ib94fff09c9c218143335f9021e0dfe213294b426
Diffstat (limited to 'src/views')
-rw-r--r--src/views/Overview/OverviewEvents.vue6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/views/Overview/OverviewEvents.vue b/src/views/Overview/OverviewEvents.vue
index af86e797..9d02d1c1 100644
--- a/src/views/Overview/OverviewEvents.vue
+++ b/src/views/Overview/OverviewEvents.vue
@@ -5,7 +5,7 @@
</div>
<div v-else>
<!-- TODO: link to event log -->
- <b-button variant="link" href="#">
+ <b-button variant="link" href="#" class="float-right">
{{ $t('pageOverview.events.viewAllButton') }}
</b-button>
<b-table
@@ -70,10 +70,6 @@ export default {
</script>
<style lang="scss" scoped>
-.btn {
- @include float-right;
-}
-
.date-column {
min-width: 200px;
}