table icon indicating copy to clipboard operation
table copied to clipboard

Bump package.json version from 2.4.1 to 2.4.2

Open SATHISHS03 opened this issue 1 year ago • 7 comments

  • Updated package.json version from 2.4.1 to 2.4.2.
  • Added maxRows and maxCols features to limit the number of rows and columns.
  • Updated README.md to reflect the new features .

SATHISHS03 avatar Sep 25 '24 11:09 SATHISHS03

Why have you merged #165 without 2 approvals? And also, please do not resolve other people's comments. Ask them to review instead. Only author of a comment should resolve it after checking that he has no questions.

neSpecc avatar Sep 25 '24 12:09 neSpecc

Please, fill the PR description

neSpecc avatar Sep 25 '24 12:09 neSpecc

What does it mean "5 by params"? By default there should not be any rows and cols limitations

image

neSpecc avatar Sep 25 '24 12:09 neSpecc

What does it mean "5 by params"? By default there should not be any rows and cols limitations

image

Since I've added maxRows: 5 and maxCols: 5 to both config and index.html, the table now displays only 5 rows and 5 columns when these parameters are passed as an example ,.

Should I remove or modify them?

SATHISHS03 avatar Sep 25 '24 14:09 SATHISHS03

What does it mean "5 by params"? By default there should not be any rows and cols limitations

Since I've added maxRows: 5 and maxCols: 5 to both config and index.html, the table now displays only 5 rows and 5 columns when these parameters are passed as an example ,.

Should I remove or modify them?

I still did't get what does it mean "by params" in README. Which params? You need to update the Readme making it more clear for developers. Mention that they are optional params.

neSpecc avatar Sep 25 '24 17:09 neSpecc

Another think is code duplication. You have many similar fragments like these:

image

Instead of adding it in many places, create a method updateAddColumnButtonState() and simply call it where needed

neSpecc avatar Sep 25 '24 17:09 neSpecc

Another think is code duplication. You have many similar fragments like these:

image

Instead of adding it in many places, create a method updateAddColumnButtonState() and simply call it where needed

created updateAddButtonstate , handles repeated logic

SATHISHS03 avatar Sep 28 '24 15:09 SATHISHS03

What does it mean "5 by params"? By default there should not be any rows and cols limitations

Since I've added maxRows: 5 and maxCols: 5 to both config and index.html, the table now displays only 5 rows and 5 columns when these parameters are passed as an example ,. Should I remove or modify them?

I still did't get what does it mean "by params" in README. Which params? You need to update the Readme making it more clear for developers. Mention that they are optional params.

updated readme.md , removed params , made it more clear

SATHISHS03 avatar Sep 29 '24 05:09 SATHISHS03