mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
correctly detect undefined for input strings during copy (#906)
This commit is contained in:
@@ -483,7 +483,7 @@ export default class QueryRunner {
|
||||
// Windows(CRLF): \r\n
|
||||
// Linux(LF)/Modern MacOS: \n
|
||||
// Old MacOs: \r
|
||||
if (!inputString) {
|
||||
if (types.isUndefinedOrNull(inputString)) {
|
||||
return 'null';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user