mirror of
https://github.com/chartdb/chartdb.git
synced 2025-11-04 14:03:15 +00:00
Compare commits
1 Commits
v1.8.1
...
jf/fix_mss
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
daf36cef34 |
@@ -130,8 +130,8 @@ export const ImportDatabase: React.FC<ImportDatabaseProps> = ({
|
|||||||
const inputValue = e.target.value;
|
const inputValue = e.target.value;
|
||||||
setScriptResult(inputValue);
|
setScriptResult(inputValue);
|
||||||
|
|
||||||
// Automatically open SSMS info when input length is exactly 65535
|
// Automatically open SSMS info when input length is close to 65535 (±500)
|
||||||
if (inputValue.length === 65535) {
|
if (inputValue.length >= 65035 && inputValue.length <= 66035) {
|
||||||
setShowSSMSInfoDialog(true);
|
setShowSSMSInfoDialog(true);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user