From fa7b6c80b5080692a351430aedb1ea696d718560 Mon Sep 17 00:00:00 2001 From: Marcel Robitaille Date: Fri, 14 Oct 2022 14:20:01 +0200 Subject: [PATCH] Move import of ActionInput to the correct spot "correct" according to eslint Signed-off-by: Marcel Robitaille --- src/components/AppControls/AppControls.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AppControls/AppControls.vue b/src/components/AppControls/AppControls.vue index 924bb9eef..3df5f2971 100644 --- a/src/components/AppControls/AppControls.vue +++ b/src/components/AppControls/AppControls.vue @@ -159,7 +159,6 @@ import Actions from "@nextcloud/vue/dist/Components/Actions" import ActionButton from "@nextcloud/vue/dist/Components/ActionButton" // Cannot use `Button` else get `vue/no-reserved-component-names` eslint errors import SimpleButton from "@nextcloud/vue/dist/Components/Button" -import ActionInput from "../SimpleActionInput.vue" import PencilIcon from "icons/Pencil.vue" import LoadingIcon from "icons/Loading.vue" @@ -168,6 +167,7 @@ import PrinterIcon from "icons/Printer.vue" import Location from "./Location.vue" import ModeIndicator from "./ModeIndicator.vue" +import ActionInput from "../SimpleActionInput.vue" export default { name: "AppControls",