We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c889552 commit bab0d6bCopy full SHA for bab0d6b
2 files changed
packages/root-cms/ui/pages/DataPage/DataPage.css
@@ -16,6 +16,10 @@
16
margin-top: 20px;
17
}
18
19
+.DataPage__emptyText {
20
+ padding: 20px;
21
+}
22
+
23
.DataPage__DataSourcesTable__filters {
24
margin-bottom: 20px;
25
display: flex;
packages/root-cms/ui/pages/DataPage/DataPage.tsx
@@ -186,7 +186,7 @@ DataPage.DataSourcesTable = () => {
186
</Table>
187
)}
188
{!loading && filteredDataSources.length === 0 && (
189
- <Text as="p">No data sources found for this filter.</Text>
+ <Text className="DataPage__emptyText">No data sources found.</Text>
190
191
</Surface>
192
</div>
0 commit comments