Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug #149016 fix: Language Constant error for List of Dashboard for TJ Dashboard #66

Open
wants to merge 2 commits into
base: release-1.1.1
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,10 @@ COM_TJDASHBOARD_FORM_LBL_DASHBOARD_ID="Dashboard Id"

;Error For No data/Widget
COM_TJDASHBOARD_WIDGETS_NOTSHOW_ERROR_MESSAGE="No widgets found to show"
COM_TJDASHBOARD_NO_DATA_AVAILABLE_MESSAGE="No data Available"
COM_TJDASHBOARD_NO_DATA_AVAILABLE_MESSAGE="No data Available"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When is this message shown ?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When no data found in widget


;All dashboard view
COM_TJDASHBOARD_LIST_VIEW_TITLE="Title"
COM_TJDASHBOARD_LIST_VIEW_DASHBOARD="Dashboard"
COM_TJDASHBOARD_LIST_VIEW_ID="ID"
COM_TJDASHBOARD_LIST_VIEW_CREATEDBY="Created By"
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,8 @@

$canChange = $this->canChangeStatus;
?>
<tr class="row
<?php echo $i % 2; ?>" sortable-group-id="
<?php echo $item->dashboard_id; ?>">
<tr class="row<?php echo $i % 2; ?>"
sortable-group-id="<?php echo $item->dashboard_id; ?>">
<td class="order nowrap center hidden-phone">
<?php
$iconClass = '';
Expand Down