From 4ff318e5a2618ceabfe421df6c9e82022a166b51 Mon Sep 17 00:00:00 2001 From: James Cobbledick Date: Tue, 25 Aug 2020 00:48:42 +0100 Subject: [PATCH] Fixed the String prop issue, where it should be of type Array --- .idea/.gitignore | 8 ++++++++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/v-lightbox.iml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ src/lightbox.vue | 2 +- 6 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/v-lightbox.iml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..73f69e0 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..28a804d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..318bb30 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/v-lightbox.iml b/.idea/v-lightbox.iml new file mode 100644 index 0000000..c956989 --- /dev/null +++ b/.idea/v-lightbox.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/lightbox.vue b/src/lightbox.vue index e3c796e..4242ddc 100644 --- a/src/lightbox.vue +++ b/src/lightbox.vue @@ -50,7 +50,7 @@ props: { items: { - type: String, + type: Array, default: () => { return [] } },