aboutsummaryrefslogtreecommitdiff
path: root/src/components/report/report.js
diff options
context:
space:
mode:
authorIlja <ilja@ilja.space>2022-03-20 09:31:36 +0100
committerIlja <ilja@ilja.space>2022-03-20 09:31:36 +0100
commit1d42d05c1fd462af26b7d340b95343ca80879737 (patch)
treedcdd89846502043f28c5729febed46e3926d0b32 /src/components/report/report.js
parentc9e4b6e7a10b614bcf0cc0b91b7540b7b4fdcca2 (diff)
Use Select component
After merging develop, the dropdown didn't format properly any more because selects have been made into a component. Here I turn the select into a component as well.
Diffstat (limited to 'src/components/report/report.js')
-rw-r--r--src/components/report/report.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/report/report.js b/src/components/report/report.js
index 14b0cfd4..76055764 100644
--- a/src/components/report/report.js
+++ b/src/components/report/report.js
@@ -1,3 +1,4 @@
+import Select from '../select/select.vue'
import StatusContent from '../status_content/status_content.vue'
import Timeago from '../timeago/timeago.vue'
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
@@ -7,6 +8,7 @@ const Report = {
'reportId'
],
components: {
+ Select,
StatusContent,
Timeago
},