add blank string as default for cat

This commit is contained in:
Ed Chalstrey 2022-06-20 15:38:46 +01:00
parent 36200044db
commit 9517553de9

View File

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