mirror of
https://github.com/usebruno/bruno.git
synced 2025-06-30 20:40:10 +02:00
fix (#680): fixed defined non-string variables to be displayed correctly in code editor
This commit is contained in:
@ -10,7 +10,7 @@ if (!SERVER_RENDERED) {
|
||||
|
||||
const pathFoundInVariables = (path, obj) => {
|
||||
const value = get(obj, path);
|
||||
return isString(value);
|
||||
return value !== undefined;
|
||||
};
|
||||
|
||||
export const defineCodeMirrorBrunoVariablesMode = (variables, mode) => {
|
||||
|
Reference in New Issue
Block a user