mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
README, prevent a nullreferenceexception
This commit is contained in:
parent
d43c3dc968
commit
06a96e8b77
@ -19,6 +19,12 @@ Once you want to stop
|
|||||||
docker-compose down
|
docker-compose down
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If you want to stop, and remove all existing data
|
||||||
|
|
||||||
|
```
|
||||||
|
docker-compose down -v
|
||||||
|
```
|
||||||
|
|
||||||
You can run the tests inside a container by running
|
You can run the tests inside a container by running
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
Layout = "../Shared/_NavLayout.cshtml";
|
Layout = "../Shared/_NavLayout.cshtml";
|
||||||
ViewData["Title"] = "Create a new token";
|
ViewData["Title"] = "Create a new token";
|
||||||
ViewData.AddActivePage(StoreNavPages.Tokens);
|
ViewData.AddActivePage(StoreNavPages.Tokens);
|
||||||
|
ViewBag.HidePublicKey = ViewBag.HidePublicKey ?? false;
|
||||||
|
ViewBag.ShowStores = ViewBag.ShowStores ?? false;
|
||||||
}
|
}
|
||||||
|
|
||||||
<h4>@ViewData["Title"]</h4>
|
<h4>@ViewData["Title"]</h4>
|
||||||
|
Loading…
Reference in New Issue
Block a user