fix: codepane and response copy download button overflow issue

This commit is contained in:
Ashita Prasad
2023-10-02 14:27:43 +05:30
parent 461f1aedd7
commit dc647dc991
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ bool showButtonLabelsInBodySuccess(int options, double maxWidth) {
case 1:
return (maxWidth < 300) ? false : true;
case 2:
return (maxWidth < 400) ? false : true;
return (maxWidth < 430) ? false : true;
case 3:
return (maxWidth < 500) ? false : true;
default:
@ -14,5 +14,5 @@ bool showButtonLabelsInBodySuccess(int options, double maxWidth) {
}
bool showButtonLabelsInViewCodePane(double maxWidth) {
return (maxWidth < 400) ? false : true;
return (maxWidth < 450) ? false : true;
}