add blank string as default for data_string

This commit is contained in:
Ed Chalstrey 2022-06-20 15:39:59 +01:00
parent 9517553de9
commit 54644c36d6

View File

@ -11,6 +11,7 @@ interface CopyControlProps {
function initCopyControlProps(options?: Partial<CopyControlProps>): CopyControlProps {
const defaults = {
cat: '',
data_string: '',
copying: true
};