diff --git a/src/NexusMods.App.UI/Pages/LibraryPage/LocalFileParentLibraryItemModel.cs b/src/NexusMods.App.UI/Pages/LibraryPage/LocalFileParentLibraryItemModel.cs index ca5377d12..2823a12d7 100644 --- a/src/NexusMods.App.UI/Pages/LibraryPage/LocalFileParentLibraryItemModel.cs +++ b/src/NexusMods.App.UI/Pages/LibraryPage/LocalFileParentLibraryItemModel.cs @@ -88,7 +88,7 @@ public LocalFileParentLibraryItemModel(LocalFile.ReadOnly localFile) public ReactiveCommand InstallItemCommand { get; } public BindableReactiveProperty IsInstalled { get; } = new(); - public BindableReactiveProperty InstallButtonText { get; } = new(value: ILibraryItemWithInstallAction.GetButtonText(numInstalled: 0, numTotal: 1, isExpanded: false)); + public BindableReactiveProperty InstallButtonText { get; } = new(value: ILibraryItemWithInstallAction.GetButtonText(isInstalled: false)); private bool _isDisposed; private readonly IDisposable _modelDisposable; diff --git a/src/NexusMods.App.UI/Pages/LibraryPage/NexusModsFileLibraryItemModel.cs b/src/NexusMods.App.UI/Pages/LibraryPage/NexusModsFileLibraryItemModel.cs index ac07efee0..71d4b4ea7 100644 --- a/src/NexusMods.App.UI/Pages/LibraryPage/NexusModsFileLibraryItemModel.cs +++ b/src/NexusMods.App.UI/Pages/LibraryPage/NexusModsFileLibraryItemModel.cs @@ -80,7 +80,7 @@ public NexusModsFileLibraryItemModel(NexusModsLibraryItem.ReadOnly nexusModsLibr public ReactiveCommand InstallItemCommand { get; } public BindableReactiveProperty IsInstalled { get; } = new(); - public BindableReactiveProperty InstallButtonText { get; } = new(value: "Install"); + public BindableReactiveProperty InstallButtonText { get; } = new(value: ILibraryItemWithInstallAction.GetButtonText(isInstalled: false)); private bool _isDisposed; private readonly IDisposable _modelDisposable; diff --git a/src/NexusMods.App.UI/Pages/LibraryPage/NexusModsModPageLibraryItemModel.cs b/src/NexusMods.App.UI/Pages/LibraryPage/NexusModsModPageLibraryItemModel.cs index 047f072af..66d8fb1c0 100644 --- a/src/NexusMods.App.UI/Pages/LibraryPage/NexusModsModPageLibraryItemModel.cs +++ b/src/NexusMods.App.UI/Pages/LibraryPage/NexusModsModPageLibraryItemModel.cs @@ -115,7 +115,7 @@ public NexusModsModPageLibraryItemModel(IObservable InstallItemCommand { get; } public BindableReactiveProperty IsInstalled { get; } = new(); - public BindableReactiveProperty InstallButtonText { get; } = new(value: ILibraryItemWithInstallAction.GetButtonText(numInstalled: 0, numTotal: 1, isExpanded: false)); + public BindableReactiveProperty InstallButtonText { get; } = new(value: ILibraryItemWithInstallAction.GetButtonText(isInstalled: false)); private bool _isDisposed; private readonly IDisposable _modelDisposable;