Skip to content

Commit 6e79d0b

Browse files
committed
Merge branch '2.0.x' into 2.1.x
2 parents 2d8c920 + 86fa50f commit 6e79d0b

File tree

2 files changed

+6
-6
lines changed
  • spring-boot-admin-server-ui/src/main/frontend/views/instances

2 files changed

+6
-6
lines changed

spring-boot-admin-server-ui/src/main/frontend/views/instances/flyway/index.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
- Copyright 2014-2018 the original author or authors.
2+
- Copyright 2014-2019 the original author or authors.
33
-
44
- Licensed under the Apache License, Version 2.0 (the "License");
55
- you may not use this file except in compliance with the License.
@@ -32,7 +32,7 @@
3232
:header-sticks-below="['#navigation']"
3333
class="migration"
3434
>
35-
<table class="table">
35+
<table class="table is-fullwidth">
3636
<thead>
3737
<tr>
3838
<th>Type</th>
@@ -52,8 +52,8 @@
5252
<td v-text="migration.type" />
5353
<td v-text="migration.checksum" />
5454
<td v-text="migration.version" />
55-
<td v-text="migration.description" />
56-
<td v-text="migration.script" />
55+
<td class="is-breakable"v-text="migration.description" />
56+
<td class="is-breakable"v-text="migration.script" />
5757
<td>
5858
<span v-text="migration.state" class="tag"
5959
:class="stateClass(migration.state)"

spring-boot-admin-server-ui/src/main/frontend/views/instances/liquibase/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
- Copyright 2014-2018 the original author or authors.
2+
- Copyright 2014-2019 the original author or authors.
33
-
44
- Licensed under the Apache License, Version 2.0 (the "License");
55
- you may not use this file except in compliance with the License.
@@ -52,7 +52,7 @@
5252
<td>
5353
<span v-text="changeSet.execType" class="tag" :class="execClass(execType)" />
5454
</td>
55-
<td v-text="changeSet.description" />
55+
<td class="is-breakable" v-text="changeSet.description" />
5656
<td v-text="changeSet.tag" />
5757
<td v-text="changeSet.contexts.join(', ')" />
5858
<td>

0 commit comments

Comments
 (0)