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

feat: implement query page #2193

Merged
merged 4 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.5
1.8.6
2 changes: 2 additions & 0 deletions assets/css/app.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/* This file is for your main application css. */
@import "~bootstrap/scss/bootstrap";
@import "../../deps/live_monaco_editor/priv/static/live_monaco_editor.min.css";

@import "named_variables";
@import "dashboard";
@import "header";
Expand Down
5 changes: 5 additions & 0 deletions assets/js/app.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import "../css/app.scss";
import { Socket } from "phoenix";
import "../css/tailwind.css";

import "bootstrap";
import ClipboardJS from "clipboard";
import * as Dashboard from "./dashboard";
Expand All @@ -19,6 +20,8 @@ import sourceLiveViewHooks from "./source_lv_hooks";
import logsLiveViewHooks from "./log_event_live_hooks";
import $ from "jquery";
import moment from "moment";
import { CodeEditorHook } from "../../deps/live_monaco_editor/priv/static/live_monaco_editor.esm"


// set moment globally before daterangepicker
window.moment = moment;
Expand Down Expand Up @@ -50,6 +53,8 @@ const hooks = {
...logsLiveViewHooks,
...LiveModalHooks,
...BillingHooks,
CodeEditorHook

};

let liveSocket = new LiveSocket("/live", Socket, {
Expand Down
59 changes: 30 additions & 29 deletions assets/package-lock.json

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

2 changes: 1 addition & 1 deletion assets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@
"glob": "^10.3.1",
"postcss": "^8.4.31",
"sass": "^1.58.3",
"tailwindcss": "^3.3.2"
"tailwindcss": "^3.4.10"
}
}
Loading
Loading