diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
deleted file mode 100644
index df7825d..0000000
--- a/.idea/inspectionProfiles/Project_Default.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/php.xml b/.idea/php.xml
index e0c73d1..2c7445e 100644
--- a/.idea/php.xml
+++ b/.idea/php.xml
@@ -9,24 +9,9 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/.idea/prettier.xml b/.idea/prettier.xml
index 0c83ac4..b0c1c68 100644
--- a/.idea/prettier.xml
+++ b/.idea/prettier.xml
@@ -2,6 +2,5 @@
-
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index f636e24..d6195b0 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -5,11 +5,8 @@
-
-
-
-
+
@@ -47,9 +44,9 @@
- {
- "associatedIndex": 8
-}
+
@@ -66,7 +63,7 @@
"WebServerToolWindowFactoryState": "false",
"code.cleanup.on.save": "true",
"git-widget-placeholder": "main",
- "last_opened_file_path": "/home/tiradoe/Projects/movie-night/web/src/types",
+ "last_opened_file_path": "/home/tiradoe/Projects/movie-night/web",
"list.type.of.created.stylesheet": "CSS",
"node.js.detected.package.eslint": "true",
"node.js.detected.package.standard": "true",
@@ -75,17 +72,15 @@
"node.js.selected.package.standard": "",
"node.js.selected.package.tslint": "(autodetect)",
"nodejs_package_manager_path": "npm",
- "npm.dev.executor": "Run",
"prettierjs.PrettierConfiguration.Package": "/home/tiradoe/Projects/movie-night/web/src/node_modules/prettier",
"rearrange.code.on.save": "true",
- "settings.editor.selected.configurable": "settings.vue",
+ "settings.editor.selected.configurable": "settings.javascript.prettier",
"ts.external.directory.path": "/home/tiradoe/Projects/movie-night/web/src/node_modules/typescript/lib",
"vue.rearranger.settings.migration": "true"
}
}]]>
-
@@ -132,8 +127,7 @@
-
-
+
diff --git a/src/pages/lists/[id].vue b/src/pages/lists/[id].vue
index 527fe99..a8cc5ca 100644
--- a/src/pages/lists/[id].vue
+++ b/src/pages/lists/[id].vue
@@ -10,47 +10,33 @@
+ @change="hideScheduled"
+ v-model="hide_scheduled" id="hide_scheduled" type="checkbox"/>
-
-
- -
+
+ -
{{ movie.title }}
-
+
X
@@ -59,139 +45,100 @@
-
-
+
\ No newline at end of file
diff --git a/src/types/movie.ts b/src/types/movie.ts
deleted file mode 100644
index f8cfed0..0000000
--- a/src/types/movie.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-export type Movie = {
- id: number;
- title: string;
- added_by: number;
- imdb_id: string;
- year: number;
- critic_score: string;
- genre: string;
- director: string;
- actors: string;
- plot: string;
- poster: string;
- last_watched: string;
-};
diff --git a/src/types/movielist.ts b/src/types/movielist.ts
index 3c8e1d5..86bd01b 100644
--- a/src/types/movielist.ts
+++ b/src/types/movielist.ts
@@ -1,10 +1,7 @@
-import type { Movie } from "~/types/movie";
-
export type MovieList = {
id: number;
name: string;
public: boolean;
owner: number;
movie_count: number;
- movies: Movie[];
};