Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vue 3 migration #109

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use value field
  • Loading branch information
amimof committed Jun 14, 2024
commit 9774fc985a56d5f0d7767d0857ecb0b98b8863da
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
9 changes: 9 additions & 0 deletions web2/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion web2/src/stores/pod.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { defineStore } from "pinia";
import { ref, computed } from "vue";
import _ from "lodash";
import Fuse from "fuse.js";

import utils from "../common/utils";
import PodService from "../services/pods";
Expand Down Expand Up @@ -120,7 +121,7 @@ export const usePodStore = defineStore("pod", () => {
eventSource.onmessage = function (e) {
if (logs.length >= maxLogLines) {
logs.value.splice(0, 1);
lineStart += 1;
lineStart.value += 1;
}
logs.value.push(e.data);
};
Expand Down