CE-1115 Re-label saved views & reports w/o the "saved" part.

This commit is contained in:
2024-04-16 20:40:08 -05:00
parent c89fe958c3
commit 1461ddef49
3 changed files with 3 additions and 1 deletions

View File

@ -143,6 +143,7 @@ public class SavedReportsMetaDataProvider
{
QTableMetaData table = new QTableMetaData()
.withName(SavedReport.TABLE_NAME)
.withLabel("Report")
.withIcon(new QIcon().withName("article"))
.withRecordLabelFormat("%s")
.withRecordLabelFields("label")

View File

@ -68,7 +68,7 @@ public class SavedViewsMetaDataProvider
{
QTableMetaData table = new QTableMetaData()
.withName(SavedView.TABLE_NAME)
.withLabel("Saved View")
.withLabel("View")
.withIcon(new QIcon().withName("table_view"))
.withRecordLabelFormat("%s")
.withRecordLabelFields("label")

View File

@ -60,6 +60,7 @@ public class RenderSavedReportMetaDataProducer implements MetaDataProducerInterf
{
QProcessMetaData process = new QProcessMetaData()
.withName(NAME)
.withLabel("Render Report")
.withTableName(SavedReport.TABLE_NAME)
.withIcon(new QIcon().withName("print"))
.addStep(new QBackendStepMetaData()