Added filtering dropdown to short URLs filtering bar

This commit is contained in:
Alejandro Celaya
2022-12-23 20:15:52 +01:00
parent b00f6fadf8
commit e790360de9
4 changed files with 47 additions and 11 deletions

View File

@@ -52,7 +52,7 @@ export const ExportShortUrlsBtn = (
longUrl: shortUrl.longUrl,
title: shortUrl.title ?? '',
tags: shortUrl.tags.join(','),
visits: shortUrl.visitsCount,
visits: shortUrl?.visitsSummary?.total ?? shortUrl.visitsCount,
})));
stopLoading();
};