mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 02:18:16 -07:00
fix merge conflict
This commit is contained in:
parent
ef6d9c7241
commit
9716578f05
@ -17,6 +17,7 @@ type ItemsArr = {
|
||||
Name?: string | null;
|
||||
Id?: string | null;
|
||||
AppName?: string | null;
|
||||
CustomName?: string | null;
|
||||
checkedAttribute?: string
|
||||
};
|
||||
|
||||
@ -112,6 +113,7 @@ const UserLibraryAccess = () => {
|
||||
Id: device.Id,
|
||||
Name: device.Name,
|
||||
AppName: device.AppName,
|
||||
CustomName: device.CustomName,
|
||||
checkedAttribute: checkedAttribute
|
||||
});
|
||||
}
|
||||
@ -307,7 +309,7 @@ const UserLibraryAccess = () => {
|
||||
key={Item.Id}
|
||||
className='chkDevice'
|
||||
itemId={Item.Id}
|
||||
itemName={Item.Name}
|
||||
itemName={Item.CustomName || Item.Name}
|
||||
itemAppName={Item.AppName}
|
||||
itemCheckedAttribute={Item.checkedAttribute}
|
||||
/>
|
||||
|
Loading…
Reference in New Issue
Block a user