(core) Fix test util and upgrade fixtures

Summary:
Fixes a test util that broke after a sync with grist-core, and upgrades
fixtures after a migration was added.

Test Plan: N/A

Reviewers: paulfitz

Reviewed By: paulfitz

Subscribers: paulfitz

Differential Revision: https://phab.getgrist.com/D3810
This commit is contained in:
George Gevoian
2023-03-01 10:21:19 -05:00
parent a8b4a67b9f
commit aa3faae25b
9 changed files with 84 additions and 58 deletions

View File

@@ -229,9 +229,10 @@ DetailView.prototype.buildFieldDom = function(field, row) {
return dom('div.g_record_detail_el.flexitem',
kd.cssClass(function() { return 'detail_theme_field_' + self.viewSection.themeDef(); }),
dom('div.g_record_detail_label_container',
dom('div.g_record_detail_label', kd.text(field.displayLabel)),
dom('div.g_record_detail_label', kd.text(field.label)),
kd.scope(field.description, desc => desc ? columnInfoTooltip(kd.text(field.description)) : null)
),
dom('div.g_record_detail_value'),
);
}