name: t()

in src/app/devices/deviceEvents/components/deviceSimulationPanel.tsx [215:233]


                name: t(ResourceKeys.deviceEvents.simulation.advanced.properties.value),
            }
        ];
    };

    const onSelectionChanged = () => {
        setSelectedIndices(new Set(selection.getSelectedIndices()));
    };

    const handleAddProperty = () => {
        const newIndex = propertyIndex + 1;
        const newProperties = [...properties, {index: newIndex, keyName: '', value: ''}];
        setProperties(newProperties);
        setPropertyIndex(newIndex);
    };

    const handleDelete = () => {
        const updatedProperties = [];
        for (let i = 0; i < properties.length; i++) {