mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 00:26:43 +00:00
refactor(gui): linting
Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
export default function(obj, value, path) {
|
||||
let i;
|
||||
path = path.split(".");
|
||||
for (i = 0; i < path.length - 1; i++) obj = obj[path[i]];
|
||||
export default function (obj, value, path) {
|
||||
let i
|
||||
path = path.split('.')
|
||||
for (i = 0; i < path.length - 1; i++) { obj = obj[path[i]] }
|
||||
|
||||
obj[path[i]] = value;
|
||||
obj[path[i]] = value
|
||||
}
|
||||
/**
|
||||
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
|
||||
|
||||
Reference in New Issue
Block a user