|
1 | 1 | <!-- |
2 | | - - Copyright 2014-2018 the original author or authors. |
| 2 | + - Copyright 2014-2019 the original author or authors. |
3 | 3 | - |
4 | 4 | - Licensed under the Apache License, Version 2.0 (the "License"); |
5 | 5 | - you may not use this file except in compliance with the License. |
|
20 | 20 | <div v-if="error" class="message is-danger"> |
21 | 21 | <div class="message-body"> |
22 | 22 | <strong> |
23 | | - <font-awesome-icon class="has-text-danger" icon="exclamation-triangle"/> |
| 23 | + <font-awesome-icon class="has-text-danger" icon="exclamation-triangle" /> |
24 | 24 | Fetching Liquibase migrations failed. |
25 | 25 | </strong> |
26 | | - <p v-text="error.message"/> |
| 26 | + <p v-text="error.message" /> |
27 | 27 | </div> |
28 | 28 | </div> |
29 | 29 | <template v-for="(context, ctxName) in contexts"> |
30 | | - <h3 class="title" v-text="ctxName" :key="ctxName"/> |
| 30 | + <h3 class="title" v-text="ctxName" :key="ctxName" /> |
31 | 31 | <template v-for="(report, name) in context.liquibaseBeans"> |
32 | 32 | <sba-panel :key="`${ctxName}-${name}`" :title="`name`" class="change-set" |
33 | 33 | :header-sticks-below="['#navigation']"> |
|
46 | 46 | <template v-for="changeSet in report.changeSets"> |
47 | 47 | <tr :key="`${ctxName}-${name}-${changeSet.id}`" class="is-selectable" |
48 | 48 | @click="showDetails[changeSet.checksum] ? $delete(showDetails, changeSet.checksum) : $set(showDetails, changeSet.checksum, true)"> |
49 | | - <td v-text="changeSet.id"/> |
| 49 | + <td v-text="changeSet.id" /> |
50 | 50 | <td> |
51 | | - <span v-text="changeSet.execType" class="tag" :class="execClass(execType)"/> |
| 51 | + <span v-text="changeSet.execType" class="tag" :class="execClass(execType)" /> |
52 | 52 | </td> |
53 | | - <td v-text="changeSet.description"/> |
54 | | - <td v-text="changeSet.tag"/> |
55 | | - <td v-text="changeSet.contexts.join(', ')"/> |
| 53 | + <td class="is-breakable" v-text="changeSet.description" /> |
| 54 | + <td v-text="changeSet.tag" /> |
| 55 | + <td v-text="changeSet.contexts.join(', ')" /> |
56 | 56 | <td> |
57 | 57 | <span v-for="label in changeSet.labels" :key="`${ctxName}-${name}-${changeSet.id}-${label}`" |
58 | | - class="tag is-info" v-text="label"/> |
| 58 | + class="tag is-info" v-text="label" /> |
59 | 59 | </td> |
60 | 60 | </tr> |
61 | 61 | <tr v-if="showDetails[changeSet.checksum]" :key="`${ctxName}-${name}-${changeSet.id}-details`"> |
62 | 62 | <td colspan="6"> |
63 | 63 | <table class="table is-fullwidth"> |
64 | 64 | <tr> |
65 | 65 | <th>Changelog</th> |
66 | | - <td colspan="3" v-text="changeSet.changeLog"/> |
| 66 | + <td colspan="3" v-text="changeSet.changeLog" /> |
67 | 67 | <th>Author</th> |
68 | | - <td v-text="changeSet.author"/> |
| 68 | + <td v-text="changeSet.author" /> |
69 | 69 | </tr> |
70 | 70 | <tr> |
71 | 71 | <th>Checksum</th> |
72 | | - <td v-text="changeSet.checksum"/> |
| 72 | + <td v-text="changeSet.checksum" /> |
73 | 73 | <th>Comments</th> |
74 | | - <td colspan="3" v-text="changeSet.comments"/> |
| 74 | + <td colspan="3" v-text="changeSet.comments" /> |
75 | 75 | </tr> |
76 | 76 | <tr> |
77 | 77 | <th>Execution Order</th> |
78 | | - <td v-text="changeSet.orderExecuted"/> |
| 78 | + <td v-text="changeSet.orderExecuted" /> |
79 | 79 | <th>ExecutionDate</th> |
80 | | - <td v-text="changeSet.dateExecuted"/> |
| 80 | + <td v-text="changeSet.dateExecuted" /> |
81 | 81 | <th>DeploymentId</th> |
82 | | - <td v-text="changeSet.deploymentId"/> |
| 82 | + <td v-text="changeSet.deploymentId" /> |
83 | 83 | </tr> |
84 | 84 | </table> |
85 | 85 | </td> |
|
0 commit comments