From 7bde1e243a66ea621313499148a458dde5104395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 19 Apr 2022 12:47:52 +0200 Subject: [PATCH] Web: import from package-relative path Use `@/path/to/file` instead of `./path/to/file`, as the former will be valid even when used in a subdirectory (i.e. in cases where the latter would have to change to `../path/to/file`). This makes imports uniform and easier to copy-paste into other files. No functional changes. --- web/app/src/App.vue | 15 ++++++++------- web/app/src/components/JobDetails.vue | 4 ++-- web/app/src/components/JobsTable.vue | 4 ++-- web/app/src/components/UpdateListener.vue | 2 +- web/app/src/main.js | 4 ++-- 5 files changed, 15 insertions(+), 14 deletions(-) diff --git a/web/app/src/App.vue b/web/app/src/App.vue index 331050ee..d4172c2f 100644 --- a/web/app/src/App.vue +++ b/web/app/src/App.vue @@ -20,13 +20,14 @@