Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_retention.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-08-08 22:40:21 +0300
committerJoas Schilling <coding@schilljs.com>2022-10-17 14:53:09 +0300
commitd0f6fd50117510c26b833be85eb0191c5233c49b (patch)
treecdb4f78e200d8fa21726e4b7be92c091a73ea2c0
parent364f171b02386d947d09f5ad5ab461f2b2c101f8 (diff)
Remove unnessary span elements
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--src/Components/RetentionRule.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Components/RetentionRule.vue b/src/Components/RetentionRule.vue
index 7109338..c882f14 100644
--- a/src/Components/RetentionRule.vue
+++ b/src/Components/RetentionRule.vue
@@ -5,19 +5,19 @@
<template>
<tr>
<td class="retention-rule__name">
- <span>{{ tagName }}</span>
+ {{ tagName }}
</td>
<td class="retention-rule__amount">
- <span>{{ timeamount }}</span>
+ {{ timeamount }}
</td>
<td class="retention-rule__unit">
- <span>{{ getUnit }}</span>
+ {{ getUnit }}
</td>
<td class="retention-rule__after">
- <span>{{ getAfter }}</span>
+ {{ getAfter }}
</td>
<td class="retention-rule__active">
- <span>{{ hasJobLabel }}</span>
+ {{ hasJobLabel }}
</td>
<td class="retention-rule__action">
<VueButton type="tertiary"