Skip to content

Commit 7e695c7

Browse files
committed
fixed issue with Notifications block
1 parent 9ab9419 commit 7e695c7

File tree

4 files changed

+399
-379
lines changed

4 files changed

+399
-379
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "laravel-file-manager",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "File manager for Laravel",
55
"keywords": [
66
"laravel",

src/components/blocks/Notification.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="fm-notification-item" role="alert"
55
v-for="(notification, index) in notifications"
66
v-bind:class="`fm-${notification.status}`"
7-
v-bind:key="index">
7+
v-bind:key="`notify-${index}`">
88
{{ notification.message }}
99
</div>
1010
</transition-group>

src/store/settings/store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default {
1111
state() {
1212
return {
1313
// App version
14-
version: '2.0.3',
14+
version: '2.0.4',
1515

1616
// this headers will be merged with default headers
1717
headers: {},

0 commit comments

Comments
 (0)