From c01cd3b46c9fa52333fb05363195c3b11fdef42a Mon Sep 17 00:00:00 2001 From: hishamco Date: Thu, 17 Sep 2020 15:41:34 +0300 Subject: [PATCH] Add dismissible option --- Oqtane.Client/Modules/Controls/Alert.razor | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Oqtane.Client/Modules/Controls/Alert.razor b/Oqtane.Client/Modules/Controls/Alert.razor index 3c8a0a77..b2d888ca 100644 --- a/Oqtane.Client/Modules/Controls/Alert.razor +++ b/Oqtane.Client/Modules/Controls/Alert.razor @@ -5,10 +5,19 @@ { } @code { + [Parameter] + public bool Dismissible { get; set; } = true; + [Parameter] public string Message { get; set; }