Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions js/notifications.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/notifications.js.map

Large diffs are not rendered by default.

1,233 changes: 829 additions & 404 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"lint:fix": "eslint --ext .js,.vue src --fix"
},
"dependencies": {
"@nextcloud/axios": "^0.5.0",
"lodash": "^4.17.15",
"nextcloud-axios": "^0.2.1",
"vue": "^2.6.10"
},
"browserslist": [
Expand Down
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<script>
import Notification from './components/Notification'
import axios from 'nextcloud-axios'
import axios from '@nextcloud/axios'
import _ from 'lodash'

export default {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Action.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</template>

<script>
import axios from 'nextcloud-axios'
import axios from '@nextcloud/axios'
export default {
name: 'Action',

Expand Down
2 changes: 1 addition & 1 deletion src/components/Notification.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</template>

<script>
import axios from 'nextcloud-axios'
import axios from '@nextcloud/axios'
import Action from './Action'
import parser from '../richObjectStringParser'

Expand Down