From db7f4a4af9056b2e196a1544a77d8c6fb36c5b77 Mon Sep 17 00:00:00 2001 From: Gucheng Wang Date: Fri, 19 Nov 2021 21:27:22 +0800 Subject: [PATCH] Show "canSignUp" column when password is ON. --- web/src/ProviderTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/ProviderTable.js b/web/src/ProviderTable.js index 6f5a89e5..df343e2c 100644 --- a/web/src/ProviderTable.js +++ b/web/src/ProviderTable.js @@ -194,7 +194,7 @@ class ProviderTable extends React.Component { }, ]; - if (!this.props.application.enableSignUp || this.props.application.enablePassword) { + if (!this.props.application.enableSignUp) { columns = columns.filter(column => column.key !== "canSignUp"); }