Skip to content

Commit

Permalink
Moving over lost changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dhoehna committed Nov 10, 2023
1 parent e43412b commit 4e6b9cf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/AzureExtension/Providers/RepositoryProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ public IAsyncOperation<RepositoryUriSupportResult> IsUriSupportedAsync(Uri uri,
/// <returns>A list of projects the organization has.</returns>
private List<TeamProjectReference> GetProjects(Microsoft.VisualStudio.Services.Account.Account organization, DeveloperId.DeveloperId azureDeveloperId)
{
var connection = AzureClientProvider.GetConnectionForLoggedInDeveloper(organization.AccountUri, azureDeveloperId);

try
{
var connection = AzureClientProvider.GetConnectionForLoggedInDeveloper(organization.AccountUri, azureDeveloperId);

// connection can be null if the organization is disabled.
if (connection != null)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"items": [
{
"type": "TextBlock",
"text": "${if(is_loading_data, '%Widget_Template/ContentLoading%', '%Widget_Template/EmptyWorkItems%')}",
"text": "%Widget_Template/EmptyWorkItems%",
"wrap": true,
"weight": "bolder",
"horizontalAlignment": "center"
Expand Down Expand Up @@ -85,7 +85,7 @@
},
{
"type": "Container",
"$when": "${(count(items) >= maxItemsDisplayed)}",
"$when": "${(count(items) >= 25)}",
"items": [
{
"type": "TextBlock",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"items": [
{
"type": "TextBlock",
"text": "${if(is_loading_data, '%Widget_Template/ContentLoading%', '%Widget_Template/EmptyWorkItems%')}",
"text": "%Widget_Template/EmptyWorkItems%",
"wrap": true,
"weight": "bolder",
"horizontalAlignment": "center"
Expand Down Expand Up @@ -151,7 +151,7 @@
},
{
"type": "Container",
"$when": "${workItemCount > maxItemsDisplayed}",
"$when": "${workItemCount > 25}",
"items": [
{
"type": "TextBlock",
Expand Down

0 comments on commit 4e6b9cf

Please sign in to comment.