Support empty application in page

This commit is contained in:
Yang Luo
2023-05-16 22:17:39 +08:00
parent 3d9b305bbb
commit 0b5ecca5c8
6 changed files with 21 additions and 11 deletions

View File

@ -60,6 +60,10 @@ class UrlTable extends React.Component {
}
renderTable(table) {
if (table === null) {
return null;
}
const columns = [
{
title: i18next.t("application:Redirect URL"),