You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there is a bug/type-o (case of noCodeDeliveryApi differs from reality) in overview.controller.js line 16 and 23 { name: 'Querying', icon: 'icon-filter-arrows', view: '/App_Plugins/noCodeDeliveryApi/backoffice/noCodeDeliveryApi/query.html', active: requestMethod === 'overview', alias: 'noCodeDeliveryApiOverview' }, { name: 'Clients', icon: 'icon-sitemap', view: '/App_Plugins/noCodeDeliveryApi/backoffice/noCodeDeliveryApi/clients.html', active: requestMethod === 'client', alias: 'noCodeDeliveryApiClient' }
Currently there is a bug/type-o (case of noCodeDeliveryApi differs from reality) in overview.controller.js line 16 and 23
{ name: 'Querying', icon: 'icon-filter-arrows', view: '/App_Plugins/noCodeDeliveryApi/backoffice/noCodeDeliveryApi/query.html', active: requestMethod === 'overview', alias: 'noCodeDeliveryApiOverview' }, { name: 'Clients', icon: 'icon-sitemap', view: '/App_Plugins/noCodeDeliveryApi/backoffice/noCodeDeliveryApi/clients.html', active: requestMethod === 'client', alias: 'noCodeDeliveryApiClient' }
it should be
{ name: 'Querying', icon: 'icon-filter-arrows', view: '/App_Plugins/NoCodeDeliveryApi/backoffice/noCodeDeliveryApi/query.html', active: requestMethod === 'overview', alias: 'noCodeDeliveryApiOverview' }, { name: 'Clients', icon: 'icon-sitemap', view: '/App_Plugins/NoCodeDeliveryApi/backoffice/noCodeDeliveryApi/clients.html', active: requestMethod === 'client', alias: 'noCodeDeliveryApiClient' }
switching line 17 in DeployServiceBase from
private const string DirectoryName = "NoCode\\DeliveryApi";
to
private readonly string _directoryName = "NoCode" + Path.DirectorySeparatorChar + "DeliveryApi";
further enhances compatibility with non-windows environments.
I tried to make a pull request, but weren't allowed to commit a new branch.
The text was updated successfully, but these errors were encountered: