Cleaning up warning
This commit is contained in:
@@ -2,6 +2,6 @@ namespace FileTime.Core.Interactions;
|
||||
|
||||
public interface IOptionsInputElement : IInputElement
|
||||
{
|
||||
object Value { get; set; }
|
||||
object? Value { get; set; }
|
||||
IReadOnlyCollection<IOptionElement> Options { get; }
|
||||
}
|
||||
@@ -153,7 +153,7 @@ public class CopyCommand : CommandBase, ITransportationCommand
|
||||
var statusList = statuses.ToList();
|
||||
var done = statusList.Count(s => s) + 1;
|
||||
if (done > statusList.Count) done = statusList.Count;
|
||||
|
||||
|
||||
return Task.FromResult($"Copy - {done} / {statusList.Count}");
|
||||
})
|
||||
.Subscribe(async (v, _) => await SetDisplayLabelAsync(v));
|
||||
|
||||
Reference in New Issue
Block a user