Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/IotHub/DetailMeta.astro
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const hasAnyColumn = creator || secondColumn || thirdColumn || useCasesColumn;
<img
class="iot-hub-detail-meta__avatar-img"
src={avatarUrl}
alt=""
alt={`Photo of ${creator}`}
loading="lazy"
decoding="async"
width="32"
Expand Down
2 changes: 1 addition & 1 deletion src/components/IotHub/IotHubFetchError.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const { heading, subtitle, ctaLabel } = IOT_HUB_STRINGS.fetchError;
<img
class="iot-hub-fetch-error__illustration"
src={fetchErrorIllustration.src}
alt=""
alt="Error loading items"
width="140"
height="140"
aria-hidden="true"
Expand Down
2 changes: 1 addition & 1 deletion src/components/IotHub/IotHubListingLink.astro
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const thumbClasses = [
class="iot-hub-listing-link__thumb-img"
data-listing-link-thumb-img
src={showImg ? imageUrl : undefined}
alt=""
alt={item?.name ?? ''}
loading="lazy"
decoding="async"
hidden={!showImg}
Expand Down
2 changes: 1 addition & 1 deletion src/components/IotHub/IotHubNoResults.astro
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const { clearHref = '/iot-hub/search/' } = Astro.props;
<img
class="iot-hub-no-results__illustration"
src={noResultsIllustration.src}
alt=""
alt="No items found"
width="140"
height="140"
aria-hidden="true"
Expand Down
4 changes: 2 additions & 2 deletions src/pages/iot-hub/search/[...page].astro
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ interface Props {
const { groups, currentPage, totalPages, total } = Astro.props as Props;
const searchText = '';
const basePath = '/iot-hub/search/';
const title = 'IoT Hub Catalog | ThingsBoard';
const title = 'Search | IoT Hub | ThingsBoard';
const description =
'Search the ThingsBoard IoT Hub catalogue of devices, widgets, rule chains and more.';
---

<BaseLayout title={title} description={description}>
<BaseLayout title={title} description={description} noIndex>
<main
class="iot-hub-search"
data-iot-hub-search-root
Expand Down