feature: show issue link on commit list of histories view (#315)

This commit is contained in:
leo 2024-08-06 11:02:52 +08:00
parent 90e3abed8d
commit 9bee51686a
No known key found for this signature in database
3 changed files with 102 additions and 5 deletions

View file

@ -1,7 +1,7 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Avalonia.Collections;
using Avalonia.Controls;
using Avalonia.Platform.Storage;
using Avalonia.VisualTree;
@ -55,6 +55,11 @@ namespace SourceGit.ViewModels
set => SetProperty(ref _detailContext, value);
}
public AvaloniaList<Models.IssueTrackerRule> IssueTrackerRules
{
get => _repo.Settings.IssueTrackerRules;
}
public Histories(Repository repo)
{
_repo = repo;