Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Assigning tags to cells can result in duplicates #15

Closed
retifrav opened this issue Feb 15, 2022 · 1 comment
Closed

Assigning tags to cells can result in duplicates #15

retifrav opened this issue Feb 15, 2022 · 1 comment
Assignees
Labels
bug something isn't working
Milestone

Comments

@retifrav
Copy link
Owner

If results table has more than certain amount of columns and rows, tagging cells might get duplicate tag names, with results in the following exception:

Exception:
Error:     [1000]
Command:   add alias
Item:      0
Label:     Not found
Item Type: Unknown
Message:   Alias already exists
@retifrav retifrav added the bug something isn't working label Feb 15, 2022
@retifrav retifrav added this to the v0.6.1 milestone Feb 15, 2022
@retifrav retifrav self-assigned this Feb 15, 2022
@retifrav
Copy link
Owner Author

Yeah, that is because cells naming scheme is f"cell{index+1}{cellIndex}", so eventually it gets to cell111 which is the same for 1x11 and 11x1. Changing to f"cell-{index+1}-{cellIndex}" will fix that.
Going forward, perhaps this approach should be considered instead.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant