{displayName}
-{value}
-Data
-'""'
- } - if (typeof value === 'boolean') { - return{value ? 'true' : 'false'}
- } - if (typeof value === 'object') { - return{YAMLStringify(value)}- } - return
{value}
- } - - const highlightedText = (text: string): string => { - if (highlightText === '') { - return text - } - - try { - const regex = new RegExp(highlightText, 'gi') - return text.replace(regex, (match) => `${match}`) - } catch (error) { - return text - } - } - - const renderDescription = (): JSX.Element => { - if (description === NO_DEFINED_DESCRIPTION) { - return{description}
- } - - return ( - - ) - } - - const renderVariableName = (): JSX.Element => ( - - ) - - return ( -Scoped variables
- -Use variable to set dynamic value
-- Use a scoped variable for dynamic values, which are defined in the - - Global Configuration - - . To use a variable, type - {'@{{variablename}}'}. -
-