robobyte-front-builder 1.0.13 → 1.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "robobyte-front-builder",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "RoboByte low-code UI builder, Report builder, and navigation extension system",
5
5
  "main": "src/lib/index.js",
6
6
  "files": [
@@ -95,7 +95,7 @@ export function BuilderProvider({ children }) {
95
95
  const [schema, setSchema] = useState(initialSchema)
96
96
  const [selectedId, setSelectedId] = useState(null)
97
97
  const [viewMetaData, setViewMetaData] = useState({
98
- id: 0,
98
+ id: null,
99
99
  viewId: '',
100
100
  title: '',
101
101
  value: '',
@@ -45,8 +45,7 @@ export default function ViewTab() {
45
45
  Endpoints.UiBuilder.Post.AddUpdate,
46
46
  true,
47
47
  data,
48
- {},
49
- `/${viewMetaData.id}`
48
+ { id: viewMetaData.id }
50
49
  )
51
50
  }
52
51