add did document link to device details page #44

Merged
pedro merged 11 commits from diddocument into main 2025-01-30 08:50:38 +00:00
Showing only changes of commit 02a69e6994 - Show all commits

View file

@ -120,8 +120,12 @@ END
# wait until idhub api is prepared to received requests
wait_idhub() {
echo "Start waiting idhub API"
while true; do
result="$(curl -s "${url}" | jq -r .error)"
result="$(curl -s "${url}" \
| jq -r .error \
|| echo "Reported errors, idhub API is still not ready")"
if [ "${result}" = "Invalid request method" ]; then
break
else