Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/projects/render-utils.tsx
2500 views
1
/**
2
* Copyright (c) 2021 Gitpod GmbH. All rights reserved.
3
* Licensed under the GNU Affero General Public License (AGPL).
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
export function toRemoteURL(cloneURL: string) {
8
return cloneURL.replace(/(^https:\/\/)|(\.git$)/g, "");
9
}
10
11
export function shortCommitMessage(message: string) {
12
const firstLine = message.split("\n")[0];
13
return firstLine.length > 50 ? firstLine.substring(0, 45) + " …" : firstLine;
14
}
15
16