diff options
author | mrfoxygmfr <mrfoxygmfr@sch9.ru> | 2025-05-06 20:16:04 +0300 |
---|---|---|
committer | mrfoxygmfr <mrfoxygmfr@sch9.ru> | 2025-05-06 20:16:04 +0300 |
commit | dda4aa52606522d2640b4736b01b49a867bd7c1b (patch) | |
tree | 9f75913eb5ca6aaf6f762b6f446f51f532b4d569 | |
parent | 0b3b49142ee78e18000496bf476b508b80a40c7e (diff) |
fix(templates): invalid button id
-rw-r--r-- | src/main/resources/templates/products.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/templates/products.html b/src/main/resources/templates/products.html index 4db7f21..cb3e7f0 100644 --- a/src/main/resources/templates/products.html +++ b/src/main/resources/templates/products.html @@ -7,7 +7,7 @@ <div class="indent"> <form method="get" action="/newProduct"> - <button id="newOperationBtn" type="submit" class="btn btn-primary">Создать новый продукт</button> + <button id="newProductBtn" type="submit" class="btn btn-primary">Создать новый продукт</button> </form> <br> |