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

Fixed case issue #731

Merged
merged 35 commits into from
May 12, 2023
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
4baf6db
Feature/203 links and branding (#642)
sudheer-rk Aug 11, 2022
10b2183
Bug/203 links filter and video (#645)
sudheer-rk Aug 15, 2022
b57d5f5
Feature/203 links and branding (#649)
sudheer-rk Aug 16, 2022
75b8973
Feature/204 upgrade disruptions UI in line with tfwm (#650)
sudheer-rk Aug 18, 2022
b0f2793
ncu updates applied to project (#653)
sudheer-rk Aug 25, 2022
21a2cf1
Feature/upgrade node and other dependencies (#656)
sudheer-rk Aug 30, 2022
7ce3cfe
Feature/upgrade node and other dependencies (#657)
sudheer-rk Aug 31, 2022
3a5e67f
Feature/adjust header and footer (#658)
sudheer-rk Aug 31, 2022
58f95c3
merge master into develop
Sep 1, 2022
703e4ff
npm install changes updated after mergt
Sep 1, 2022
71938ce
added new message type NoKnownDisruptionMessage replacing 'good servi…
sudheer-rk Oct 26, 2022
5b23390
Bug/change good service to unknown disruption (#671)
sudheer-rk Oct 27, 2022
d6b1e11
Merge 'master' into develop
Nov 3, 2022
ca412d9
Identify and fix issue with API returning empty array (#679)
sudheer-rk Nov 4, 2022
3243d9a
update staging environment with new api key
Jan 5, 2023
55752c2
rollback dependencies updated previously
Jan 5, 2023
bee26a4
rolled back api key
Jan 5, 2023
7d9b4cc
updated with new api key
Jan 5, 2023
61fa361
rollback package lock file as a test
Jan 5, 2023
bb804bb
remove extra 's' on the end of the api endpoint
Jan 10, 2023
48b1355
added 'show more lines' toggle link to trams (#697)
sudheer-rk Jan 10, 2023
642baba
Bug/amendments to UI displaying incorrect disruptions (#703)
sudheer-rk Jan 11, 2023
f20af1e
implementing disruptions lines display list (#707)
sudheer-rk Jan 12, 2023
7dd4393
Feature/revise text on Disruptions when no known disruption (#677) (#…
sudheer-rk Jan 25, 2023
7030601
testing branch eslint (#721)
sudheer-rk Feb 20, 2023
8428204
bug/send random string with api call (#720)
sudheer-rk Feb 20, 2023
584b5d1
bug/send random string with api call (#722)
sudheer-rk Feb 20, 2023
6ac3c53
Bug/group disruption lines and operators (#728)
sudheer-rk Mar 29, 2023
adf6efa
Merge 'master' into develop & fix Severity level.
Mar 30, 2023
7449ed1
merge master into develop & fix severity
Mar 30, 2023
bc646a3
Merge branch 'master' into develop
May 11, 2023
ee41f16
urgent fix: hard coded industrial action text
May 11, 2023
7dc171d
show disruption descriptions on trains
May 12, 2023
9cdfdfb
fixed case issue
May 12, 2023
252f070
merge branch 'master' into develop
May 12, 2023
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
6 changes: 1 addition & 5 deletions src/components/shared/DisruptionInfo/DisruptionInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,7 @@ const DisruptionInfo = ({ disruption }) => {
{createDateString(disruption.disruptionTimeWindow.start)} to{' '}
{createDateString(disruption.disruptionTimeWindow.end)}
</p>
<div className="wmnds-m-b-lg wmnds-col-1">
<p className={`${s.promoterOrganisation} wmnds-m-b-none`}>
{disruption.description.toLowerCase()}
</p>
</div>
<p>{disruption.description}</p>
</div>
</>
)}
Expand Down