added delete "v" in version

This commit is contained in:
Данил 2022-09-25 11:05:57 +03:00
parent 439cb02641
commit 8409cd7b75

View file

@ -2,6 +2,6 @@ $.ajax({
url: "http://localhost:8080/api/get/version", url: "http://localhost:8080/api/get/version",
type: "GET", type: "GET",
success: function(data){ success: function(data){
$("#program-version").text(data.message); $("#program-version").text(data.message.replace("v", ""));
} }
}) })