From ce8c90a125fff7f79832eb5313cd9635885fc216 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sat, 22 Jul 2023 05:07:31 +0300 Subject: [PATCH] Added `magnetUrl` prop in Search Index Row --- frontend/src/Search/Table/SearchIndexRow.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/Search/Table/SearchIndexRow.js b/frontend/src/Search/Table/SearchIndexRow.js index 1b740b5da..ffa98447e 100644 --- a/frontend/src/Search/Table/SearchIndexRow.js +++ b/frontend/src/Search/Table/SearchIndexRow.js @@ -337,7 +337,8 @@ SearchIndexRow.propTypes = { title: PropTypes.string.isRequired, fileName: PropTypes.string.isRequired, infoUrl: PropTypes.string.isRequired, - downloadUrl: PropTypes.string.isRequired, + downloadUrl: PropTypes.string, + magnetUrl: PropTypes.string, indexerId: PropTypes.number.isRequired, indexer: PropTypes.string.isRequired, size: PropTypes.number.isRequired,