Skip to content

Commit

Permalink
hotfix/cwms-tab-api-string (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinJJackson committed Aug 21, 2024
1 parent ecc81d0 commit 7867570
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hhd-ui",
"version": "0.17.0",
"version": "0.17.1",
"private": true,
"dependencies": {
"@ag-grid-community/client-side-row-model": "^30.0.3",
Expand Down
2 changes: 1 addition & 1 deletion src/common/forms/instrument-form.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default connect(
isEdit = true,
}) => {
const [name, setName] = useState(item?.name || '');
const [showCwms, setShowCwms] = useState(item?.show_cwms_tab || '');
const [showCwms, setShowCwms] = useState(item?.show_cwms_tab || false);
const [type_id, setTypeId] = useState(item?.type_id || '');
const [station, setStation] = useState(item?.station || '');
const [offset, setOffset] = useState(item?.offset || '');
Expand Down

0 comments on commit 7867570

Please sign in to comment.