mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Prevent raw table names from overflowing
Summary: Modifies CSS so that text overflow is handled by displaying an ellipsis when raw table names exceed the width of their container. Test Plan: Tested manually. Reviewers: jarek Reviewed By: jarek Differential Revision: https://phab.getgrist.com/D3524
This commit is contained in:
@@ -1289,7 +1289,7 @@ export async function openRawTable(tableId: string) {
|
||||
export async function renameRawTable(tableId: string, newName: string) {
|
||||
await driver.find(`.test-raw-data-table .test-raw-data-table-id-${tableId}`)
|
||||
.findClosest('.test-raw-data-table')
|
||||
.find('.test-raw-data-widget-title')
|
||||
.find('.test-widget-title-text')
|
||||
.click();
|
||||
const input = await driver.find(".test-widget-title-table-name-input");
|
||||
await input.doClear();
|
||||
|
||||
Reference in New Issue
Block a user