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

2.4 Release #688

Merged
merged 24 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f151d32
Made API keys hidden (password fields) in the query translator module
nielsdejong Oct 10, 2023
0caa78a
Added new report action type for tables: multiselect checkboxes (#664)
nielsdejong Oct 27, 2023
3a2cf4d
Fix handling external updates of parameter values in parameter select…
nielsdejong Oct 27, 2023
5e27a02
Feature/new dashboard load UI (#657)
nielsdejong Oct 27, 2023
f4c2791
Bump @babel/traverse from 7.21.4 to 7.23.2 in /gallery (#670)
dependabot[bot] Nov 3, 2023
7b7bed1
Bump @babel/traverse from 7.20.13 to 7.23.2 (#669)
dependabot[bot] Nov 3, 2023
4f29427
Bump postcss from 8.4.23 to 8.4.31 in /gallery (#656)
dependabot[bot] Nov 6, 2023
f823de2
Bump postcss from 8.4.21 to 8.4.31 (#655)
dependabot[bot] Nov 6, 2023
e4b0ecd
Text hard to read on dark theme (#668)
JonanOribe Nov 6, 2023
96bd80b
Hotfix for wrong default parameter replacement in markdown
nielsdejong Nov 7, 2023
2d030a4
Merge branch 'develop' of github.com:neo4j-labs/neodash into develop
nielsdejong Nov 7, 2023
295857b
Add back arrow on connection modal (#675)
hugorplobo Nov 10, 2023
3742393
VULCAN-126/Override default message (#683)
nielsdejong Nov 10, 2023
be8b08f
Fix/hiding columns in table (#685)
AleSim94 Nov 13, 2023
ad4bd0b
Fix parameters values (#641)
BennuFire Nov 13, 2023
d7be8c7
Updated dashboard format to 2.4. Double resolution for horizontal and…
nielsdejong Nov 14, 2023
fceb5f3
Feature/gantt chart (#684)
alfredorubin96 Nov 14, 2023
c54acd3
adding in advanced config for the graph viz more graph layout config …
AleSim94 Nov 14, 2023
a6140d0
Adding form widget as a new extension (#568)
nielsdejong Nov 14, 2023
27d35f1
Model Examples and LLM improvements (#600)
alfredorubin96 Nov 15, 2023
85ff8fd
Merge branch 'master' into develop
nielsdejong Nov 16, 2023
9732c09
Added release notes for 2.4 + bonus feature (keyboard shortcut to run…
nielsdejong Nov 16, 2023
86cf207
Hotfixes for Sonarqube issues
nielsdejong Nov 16, 2023
85d9581
minor fix in the forms where it wasn't getting the correct value in t…
alfredorubin96 Nov 16, 2023
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
Hotfixes for Sonarqube issues
  • Loading branch information
nielsdejong committed Nov 16, 2023
commit 86cf207ce59a4df9f3e6235fc799aba0a4f681f8
1 change: 0 additions & 1 deletion public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@
overflow-x: scroll !important;
overflow-y: scroll;
min-height: 116px;
/*height: 200px !important;*/
}

.textinput-linenumbers::-webkit-scrollbar {
Expand Down
2 changes: 1 addition & 1 deletion src/chart/parameter/ParameterSelectCardSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const ParameterSelectCardSettings = ({ query, database, settings, onReportSettin
parameters,
10,
(status) => {
status == QueryStatus.NO_DATA ? setRecords([]) : null;
status == QueryStatus.NO_DATA ? setRecords([]) : () => {};
},
(result) => setRecords(result),
() => {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ const NodePropertyParameterSelectComponent = (props: ParameterSelectProps) => {
debouncedQueryCallback(props.query, { input: `${inputDisplayText}`, ...allParameters }, setExtraRecords);
}
}}
value={inputValue}
value={inputValue || ''}
onChange={propagateSelection}
renderInput={(params) => (
<TextField
Expand Down
3 changes: 0 additions & 3 deletions src/dashboard/DashboardThunks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,8 @@ export const saveDashboardToNeo4jThunk = (driver, database, dashboard, date, use
(records) => {
if (records && records[0] && records[0]._fields && records[0]._fields[0] && records[0]._fields[0] == uuid) {
dispatch(createNotificationThunk('🎉 Success!', 'Your current dashboard was saved to Neo4j.'));

onSuccess(uuid);
} else {
console.log(records);
dispatch(
createNotificationThunk(
'Unable to save dashboard',
Expand Down Expand Up @@ -200,7 +198,6 @@ export const deleteDashboardFromNeo4jThunk = (driver, database, uuid, onSuccess)
if (records && records[0] && records[0]._fields && records[0]._fields[0] && records[0]._fields[0] == uuid) {
onSuccess(uuid);
} else {
console.log(records);
dispatch(
createNotificationThunk(
'Unable to delete dashboard',
Expand Down
8 changes: 2 additions & 6 deletions src/dashboard/sidebar/DashboardSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export const NeoDashboardSidebar = ({
// Creates new dashboard in draft state (not yet saved to Neo4j)
deleteDashboardFromNeo4j(driver, dashboardDatabase, uuid, () => {
if (uuid == dashboard.uuid) {
setSelectedDashboardIndex[0];
setSelectedDashboardIndex(0);
resetLocalDashboard();
setDraft(true);
}
Expand Down Expand Up @@ -324,11 +324,7 @@ export const NeoDashboardSidebar = ({
}}
handleImportClicked={() => {
setMenuOpen(Menu.NONE);
if (draft) {
setModalOpen(Modal.IMPORT);
} else {
setModalOpen(Modal.IMPORT);
}
setModalOpen(Modal.IMPORT);
}}
handleClose={() => {
setMenuOpen(Menu.NONE);
Expand Down
2 changes: 1 addition & 1 deletion src/dashboard/sidebar/modal/legacy/LegacyShareModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export const NeoShareModal = ({ open, handleClose, connection }) => {
defaultValue={'No'}
choices={['Yes', 'No']}
onChange={(e) => {
if ((e == 'No') & (shareStandalone == 'Yes')) {
if (e == 'No' && shareStandalone == 'Yes') {
return;
}
setShareLink(null);
Expand Down
2 changes: 1 addition & 1 deletion src/report/Report.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export const NeoReport = ({
parameters,
1000,
(status) => {
status == QueryStatus.NO_DATA ? setRecords([]) : null;
status == QueryStatus.NO_DATA ? setRecords([]) : () => {};
},
(result) => setRecords(result),
() => {},
Expand Down
Loading