mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -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
|
// Windows(CRLF): \r\n
|
||||||
// Linux(LF)/Modern MacOS: \n
|
// Linux(LF)/Modern MacOS: \n
|
||||||
// Old MacOs: \r
|
// Old MacOs: \r
|
||||||
if (!inputString) {
|
if (types.isUndefinedOrNull(inputString)) {
|
||||||
return 'null';
|
return 'null';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user