summaryrefslogtreecommitdiffstats
path: root/src/components/Explore.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Explore.vue')
-rw-r--r--src/components/Explore.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/Explore.vue b/src/components/Explore.vue
index 67d67272c..81ce3c060 100644
--- a/src/components/Explore.vue
+++ b/src/components/Explore.vue
@@ -22,9 +22,9 @@
<img :src="entry.image">
</div>
</div>
- <Button @click="subscribe(entry.feed)">
+ <NcButton @click="subscribe(entry.feed)">
{{ t("news", "Subscribe to") }} {{ entry.title }}
- </Button>
+ </NcButton>
</div>
</div>
</div>
@@ -33,7 +33,7 @@
<script lang="ts">
import Vue from 'vue'
-import Button from '@nextcloud/vue/dist/Components/Button'
+import NcButton from '@nextcloud/vue/dist/Components/NcButton'
import axios from '@nextcloud/axios'
import AddFeed from './AddFeed.vue'
import * as router from '@nextcloud/router'
@@ -42,7 +42,7 @@ import { Feed } from '../types/Feed.vue'
const ExploreComponent = Vue.extend({
components: {
- Button,
+ NcButton,
AddFeed,
},
data: () => {