Skip to content

Empty States & Illustrations

No one likes a blank screen. That's why we've given you the ability to add helpful text hints, illustrations, and help links to the different empty states users might come across in the UI.

Edit blueprint metadata in the info tab

No Data to Load

When your users are just starting out with your UI and they haven't added any data yet, they may need some help to guide them in the right direction. That's why we've given you the ability to configure the empty states of certain components, like the table & card list. You can make these changes for a given blueprint in the blueprint's metadata.

Configuration options

Metadata Example

{
 "strings": {
        "noDataTitle": "Add Your Assets",
        "noDataBody": "Ready to import your asset inventory? Upload your assets in bulk or individually.",
        "noDataDocLink": "https://www.google.com/"
        },
  "icons": {
        "noData": "https://molten-ui-assets.storage.googleapis.com/no-data.svg"
        }
}

No Search Results

Sometimes your user searches for something that just doesn't exist. To help them along the way, and account for any special search and filter behaviors you might have in your application, you can customize your empty search results table & list message per blueprint.

Configuration options

Metadata Example

{
 "strings": {
       "noSearchResultsTitle": "We Couldn't Find Any Matches For That",
       "noSearchResultsBody": "Please try another search query.",
       },
 "icons": {
       "noSearchResults": "https://molten-ui-assets.storage.googleapis.com/no-search-results.svg"
       }
}

SVG files will have the best resolution

Naming Conventions for Illustrations

Image Naming Convention Description
no-data.svg Default no data illustration
no-search-results.svg Default no search results illustration
no-data-blueprint.svg Blueprint-specific no data illustration. Ex. no-data-tracker.svg
no-search-results-blueprint.svg Blueprint-specific no search results illustration
Back to top