comparison client/src/components/importoverview/LogEntry.vue @ 2579:5295a182b4a4

overview2 WIP
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 11 Mar 2019 15:53:31 +0100
parents
children 5472a5be09c2
comparison
equal deleted inserted replaced
2578:3ad81357a57c 2579:5295a182b4a4
1 <template>
2 <div class="d-flex flex-row">
3 <font-awesome-icon
4 class="mr-1 text-info"
5 icon="angle-right"
6 fixed-width
7 ></font-awesome-icon
8 >Ich bin ein Eintrag!
9 <span
10 ><font-awesome-icon
11 v-if="entry.warnings"
12 class="ml-1 text-warning"
13 icon="exclamation-triangle"
14 fixed-width
15 ></font-awesome-icon
16 ></span>
17 <div v-if="reviewable">Review ME!</div>
18 </div>
19 </template>
20
21 <script>
22 export default {
23 name: "importlogentry",
24 props: ["entry"],
25 computed: {
26 reviewable() {
27 return this.entry.state === "pending";
28 }
29 }
30 };
31 </script>
32
33 <style></style>