Question Credits Refunded
Thanks phil, I will check the CLI.
hi
Can you share your website's URLs of azure?
liming.ma@volosoft.com
hi @lan.dang
I can't reproduce this problem. Can you share a project? liming.ma@volosoft.com
hi
You can use the wildcard version of the nightly build.
<PackageReference Include="Volo.Packages" Version="8.0.*-*"/>
hi
When upgrading from 7.2.1 to 7.4.2, we noticed that there is no longer a submit button for the user to disable/enable 2FA (tenant setup with optional 2FA).
Click the Two Factor Enabled button will submit automatically.
There is now a message indicating that the end-user needs to remove all their 2FA providers.
If the user enables 2fa but does not provide a 2fa provider, he can no longer log in. That's why we disable 2fa if the user removes all providers.
hi
You can change the application name by: https://docs.abp.io/en/abp/latest/Deployment/Distributed-Microservice#application-name-instance-id
ok, Can you run the abp install-libs in balzor server project and re-check the qr page?
hi
Please share the package.json of your blazor server project.
hi
The tag helper abp-tooltip-top can only be used in cshtml file. You can't use it in javascript.
You can use the HTML code in javascript.
$("#RelItemTableRows").append(
' <tr style="text-align: center; vertical-align: middle;" index="'+newIndex+'">\n' +
' <td style="display: none" name="id" index="'+newIndex+'">'+id+'</td>\n' +
' <td style="display: none">' +
' <input value="'+id+'" id="SelectedRelItemIds['+newIndex+']" name="SelectedRelItemIds['+newIndex+']"/>\n' +
' </td>\n' +
' <td style="text-align: left">'+displayName+'</td>\n' +
' <td style="text-align: right">\n' +
' <button class="btn btn-danger btn-sm text-light relItemDeleteButton" index="'+newIndex+'" data-bs-toggle="tooltip" data-bs-placement="top" aria-label="Delete" data-bs-original-title="Delete" > <i class="fa fa-trash"></i> </button>\n' +
' </td>\n' +
' </tr>'