summaryrefslogtreecommitdiffstats
path: root/src/components/Properties/PropertyText.vue
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-05-13 15:03:08 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-05-13 15:03:08 +0200
commitf7842265d839f355f6df463c7497aec78f8453e6 (patch)
tree173cb3d58f9e4b68ebaabb59225665e8d5ac8a43 /src/components/Properties/PropertyText.vue
parent8463ce63c2d5651a4a4c979de1a333a8bee148bf (diff)
Update template and css
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/components/Properties/PropertyText.vue')
-rw-r--r--src/components/Properties/PropertyText.vue6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/Properties/PropertyText.vue b/src/components/Properties/PropertyText.vue
index 48745571..8ccaf969 100644
--- a/src/components/Properties/PropertyText.vue
+++ b/src/components/Properties/PropertyText.vue
@@ -60,7 +60,7 @@
target="_blank" />
<!-- props actions -->
- <action :actions="actions" class="property__actions" />
+ <PropertyActions :actions="actions" @delete="deleteProperty" />
</div>
</div>
</template>
@@ -69,12 +69,14 @@
import debounce from 'debounce'
import PropertyMixin from 'Mixins/PropertyMixin'
import PropertyTitle from './PropertyTitle'
+import PropertyActions from './PropertyActions'
export default {
name: 'PropertyText',
components: {
- PropertyTitle
+ PropertyTitle,
+ PropertyActions
},
mixins: [PropertyMixin],