code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/src/App.js b/src/App.js // @flow
import { isMobile } from 'mobile-device-detect'
-import React, { memo, useCallback, useState } from 'react'
+import React, { memo, useCallback, useEffect, useState } from 'react'
import { Platform, SafeAreaView, StyleSheet } from 'react-native'
import PaperProvider from 're... | 0 |
diff --git a/articles/libraries/lock/v11/configuration.md b/articles/libraries/lock/v11/configuration.md @@ -67,7 +67,6 @@ var lock = new Auth0Lock('clientID', 'account.auth0.com', options);
| [redirectUrl](#redirecturl-string-) | The URL to redirect to after auth |
| [responseMode](#responsemode-string-) | Option to s... | 2 |
diff --git a/accessibility-checker-engine/src/v2/dom/ColorUtil.ts b/accessibility-checker-engine/src/v2/dom/ColorUtil.ts @@ -341,7 +341,8 @@ export class ColorUtil {
delete thisStackBG.alpha;
} else {
thisStackBG = thisBgColor.getOverlayColor(thisStackBG);
- thisStackAlpha = thisBgColor.alpha || 1.0
+ //thisStackAlpha ... | 3 |
diff --git a/src/graphics/program-lib/chunks/msdf.frag b/src/graphics/program-lib/chunks/msdf.frag @@ -6,8 +6,8 @@ float median(float r, float g, float b) {
vec4 applyMsdf(vec4 color) {
- vec3 sample = texture2D(texture_msdfMap, vUv0).rgb;
- float distance = median(sample.r, sample.g, sample.b) - 0.5;
+ vec3 tsample = ... | 10 |
diff --git a/util.js b/util.js @@ -616,3 +616,7 @@ export function angleDifference(angle1, angle2) {
a = mod(a + Math.PI, Math.PI*2) - Math.PI;
return a;
}
+
+export function getVelocityDampingFactor(dampingPer60Hz, timeDiff) {
+ return Math.pow(dampingPer60Hz, timeDiff / 60);
+}
\ No newline at end of file
| 0 |
diff --git a/includes/Modules/Analytics.php b/includes/Modules/Analytics.php @@ -594,23 +594,6 @@ final class Analytics extends Module implements Module_With_Screen, Module_With_
};
case 'report':
$date_range = $data['dateRange'] ?: 'last-28-days';
- $data = array_merge(
- array(
- 'dateRange' => 'last-28-days',
- 'url... | 2 |
diff --git a/android/app/build.gradle b/android/app/build.gradle @@ -237,7 +237,7 @@ dependencies {
implementation project(':react-native-config')
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "com.android.support:appcompat-v7:${versions.supportLibrary}"
- implementation "com.facebook.react:re... | 1 |
diff --git a/vis/js/io.js b/vis/js/io.js @@ -470,6 +470,8 @@ IO.prototype = {
term_array = term_array.concat(query_wt_rest.trim().replace(/\s+/g, " ").split(" "));
+ term_array = [...new Set(term_array)];
+
return term_array;
},
| 2 |
diff --git a/test/cli.js b/test/cli.js @@ -199,7 +199,7 @@ test('improper use of t.throws, even if caught and then rethrown too slowly, wil
});
});
-test('babel require hook only does not apply to source files', t => {
+test('precompiler require hook does not apply to source files', t => {
t.plan(3);
execCli('fixture/b... | 10 |
diff --git a/docs/StyleSheet.md b/docs/StyleSheet.md ## StyleSheet
-### Stylesheet is now a JS object, see [CHANGELOG.txt](../CHANGELOG.txt) for more details
+### Stylesheet is now a JS object, see [CHANGELOG.md](../CHANGELOG.md) for more details
See (Mapbox expression specs)[https://docs.mapbox.com/mapbox-gl-js/style-... | 1 |
diff --git a/tests/js/track-timeouts.js b/tests/js/track-timeouts.js * @return {void}
*/
export function setupTimeoutTracker() {
+ let originalTimeoutAPI;
+
global.useTrackedTimeouts = () => {
- const originalTimeoutAPI = {
+ originalTimeoutAPI = originalTimeoutAPI || {
setTimeout: global.setTimeout,
clearTimeout: glob... | 11 |
diff --git a/src/lib/hooks/useUpgradeDialog.js b/src/lib/hooks/useUpgradeDialog.js -import React, { useEffect, useRef } from 'react'
+import React, { useEffect } from 'react'
import { StyleSheet, TouchableOpacity } from 'react-native'
-import { defer, from as fromPromise } from 'rxjs'
-import { share } from 'rxjs/opera... | 1 |
diff --git a/src/containers/LeftPanel/TestCase/EndpointTestStatements.jsx b/src/containers/LeftPanel/TestCase/EndpointTestStatements.jsx import React from 'react';
-/*
-Add imports here. Ex:
-import Middleware from '../Middleware/Middleware'
-*/;
+import Endpoint from '../Endpoint/Endpoint';
-const EndpointTestStatemen... | 3 |
diff --git a/books/serializers.py b/books/serializers.py @@ -32,7 +32,7 @@ class BookCopySerializer(serializers.ModelSerializer):
class Meta:
model = BookCopy
- fields = ('user', 'borrow_date')
+ fields = ('user', 'borrow_date', 'missing')
class BookSerializer(serializers.ModelSerializer):
| 0 |
diff --git a/assets/js/components/ReportTable.js b/assets/js/components/ReportTable.js @@ -41,7 +41,7 @@ export default function ReportTable( { rows, columns, className } ) {
<thead className="googlesitekit-table__head">
<tr className="googlesitekit-table__head-row">
{ columns.map(
- ( { title, description, primary, cl... | 4 |
diff --git a/README.md b/README.md @@ -143,36 +143,44 @@ While this project's installation instructions defaults to using [npm][npm] for
- Install the entire project as a [command-line utility](#install_command_line_utility).
-- I am building a **web application** and plan on using [Browserify][browserify], [Webpack][w... | 4 |
diff --git a/src/encoded/audit/replicate.py b/src/encoded/audit/replicate.py @@ -68,7 +68,7 @@ def audit_inconsistent_construct_tag(value, system):
if ab_target['name'] == exp_target['name']:
matching_flag = True
break
- if not matching_flag:
+ if len(antibody_targets) > 0 and not matching_flag:
detail = 'Replicate {}-... | 1 |
diff --git a/plugins/api/src/getCategory.js b/plugins/api/src/getCategory.js @@ -42,6 +42,7 @@ const makeUrl = function (title, options, append) {
}
const getCategory = async function (title, options, http) {
+ options = { ...defaults, ...options }
let list = []
let getMore = true
let append = ''
| 1 |
diff --git a/layouts/partials/head.html b/layouts/partials/head.html {{- end -}}
{{ if and (not .favicon) (not .favicon_png) (not .favicon_svg) }}
- <link rel="icon" type="image/svg+xml" href="favicon.svg">
+ <link rel="icon" href="/favicon.png">
+ <link rel="apple-touch-icon-precomposed" href="/favicon.png">
+ <link r... | 0 |
diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml @@ -59,6 +59,7 @@ jobs:
use-tls: 0
- node-version: "18.x"
mysql_connection_url_key: "PS_MYSQL_URL"
+ filter: "test-select"
use-compression: 0
use-tls: 0
env:
| 4 |
diff --git a/android/fastlane/metadata/android/en-GB/short_description.txt b/android/fastlane/metadata/android/en-GB/short_description.txt -Discover the love and events that happen in London during Pride Festival and Parade
+Discover the love and events that happen in London during Pride Festival!
\ No newline at end o... | 13 |
diff --git a/packages/node_modules/@node-red/runtime/lib/storage/localfilesystem/projects/index.js b/packages/node_modules/@node-red/runtime/lib/storage/localfilesystem/projects/index.js @@ -395,7 +395,7 @@ function createProject(user, metadata) {
}
function setActiveProject(user, projectName) {
return loadProject(proj... | 9 |
diff --git a/articles/extensions/authorization-extension/v2/implementation/setup.md b/articles/extensions/authorization-extension/v2/implementation/setup.md @@ -20,13 +20,13 @@ If you have a large number of users, managing the access rights and permissions
* Client-Facing Applications
* Support
-: O.ButtonView#_ignoreUntil
+ Property: O.ButtonView#noRepeatWithin
Type: Number
- Time before which we should not rea... | 0 |
diff --git a/src/components/loader/loader.jsx b/src/components/loader/loader.jsx @@ -120,15 +120,13 @@ class LoaderComponent extends React.Component {
constructor (props) {
super(props);
this.state = {
- messageNumber: 0
+ messageNumber: this.chooseRandomMessage()
};
}
componentDidMount () {
- this.chooseRandomMessage(... | 12 |
diff --git a/routes/spec.graphql b/routes/spec.graphql @@ -289,7 +289,7 @@ type SkyblockQuery {
e.g. 'Mango'. Note: profile name can be different (although unlikely) for
different members of a co-op!
"""
- profile_id: String!
+ profile_id: String
): JSON
"""
| 11 |
diff --git a/package.json b/package.json },
"license": "MIT",
"dependencies": {
- "minecraft-data": "^2.47.0",
+ "minecraft-data": "^2.50.0",
"minecraft-protocol": "^1.8.1",
"mojangson": "^0.2.1",
"prismarine-biome": "^1.0.1",
| 3 |
diff --git a/app/shared/actions/accounts.js b/app/shared/actions/accounts.js @@ -92,33 +92,31 @@ export function getAccount(account = '') {
};
}
-export function getAccountActions(amount) {
+export function getActions(account, start, offset) {
return (dispatch: () => void, getState) => {
const {
connection,
settings
} ... | 13 |
diff --git a/main_process/test_controllers/main_testHttpController.js b/main_process/test_controllers/main_testHttpController.js @@ -73,7 +73,6 @@ testHttpController.runTest = (inputScript, reqResObj, gqlResponse) => {
// if the assertion test fails and throws an error, also include the expected and actual
return `
try... | 5 |
diff --git a/src/article/shared/SupplementaryFileComponent.js b/src/article/shared/SupplementaryFileComponent.js @@ -5,13 +5,19 @@ export default class SupplementaryFileComponent extends NodeComponent {
render ($$) {
const model = this.props.model
const node = model._node
- let el = $$('div').addClass('sc-supplementary... | 7 |
diff --git a/articles/validating-xml-using-dtd/index.md b/articles/validating-xml-using-dtd/index.md @@ -262,7 +262,8 @@ To summarize:
- https://en.wikipedia.org/wiki/Document_type_definition
- https://en.wikipedia.org/wiki/XML
- https://en.wikipedia.org/wiki/HTML
-- https://web.archive.org/web/20100311063223/http://ww... | 1 |
diff --git a/src/frontend/package.json b/src/frontend/package.json "license": "Apache-2.0",
"scripts": {
"bootstrap": "lerna bootstrap",
- "build": "lerna run pre-publish && git add -A && git commit -m 'build dist'",
+ "build": "lerna run pre-publish && git add -A && git commit -m 'Build packages for distribution'",
"v... | 7 |
diff --git a/bin/oref0-subg-ww-radio-parameters.sh b/bin/oref0-subg-ww-radio-parameters.sh #!/bin/bash
-# Set this to the directory where you've run this. By default:
-# cd ~
+# This script must be started in the OpenAPS directory.
+# It requires subg_rfspy in installed. This can be installated with
+# cd ~/src
# git c... | 7 |
diff --git a/src/angular/projects/spark-core-angular/package.json b/src/angular/projects/spark-core-angular/package.json {
"name": "@sparkdesignsystem/spark-core-angular",
"description": "A collection of Spark Design System components in Angular 6+",
- "version": "8.0.8",
+ "version": "8.0.9",
"scripts": {
"lint": "ng ... | 3 |
diff --git a/assets/js/googlesitekit/datastore/site/notifications.test.js b/assets/js/googlesitekit/datastore/site/notifications.test.js @@ -32,10 +32,9 @@ describe( 'core/site notifications', () => {
beforeEach( () => {
registry = createTestRegistry();
- const response = true;
fetchMock.post(
/^\/google-site-kit\/v1\/... | 2 |
diff --git a/articles/api-auth/tutorials/migration/implicit.md b/articles/api-auth/tutorials/migration/implicit.md @@ -85,7 +85,7 @@ Location: https://app.example.com/#
&token_type=Bearer</code></pre>
<ul>
<li>The returned access token is valid for calling the <a href="/api/authentication#get-user-info">/userinfo endpo... | 2 |
diff --git a/README.md b/README.md @@ -9,7 +9,7 @@ Be sure to [watch the tutorials](http://bit.do/vizor), [read the documentation](
### Installing
-Installing a local instance of Patches requires [MongoDB](http://mongodb.org) (Use v3.2.12), [Redis](http://redis.io), [node.js](https://nodejs.org) (Get [v6.11](https://no... | 2 |
diff --git a/src/botPage/view/blockly/customBlockly.js b/src/botPage/view/blockly/customBlockly.js +import { translate } from '../../../common/utils/tools';
+
/* eslint-disable */
Blockly.WorkspaceAudio.prototype.preload = function() {};
Blockly.FieldDropdown.prototype.render_ = function() {
@@ -288,3 +290,47 @@ Blockl... | 5 |
diff --git a/src/video/canvas/canvas_renderer.js b/src/video/canvas/canvas_renderer.js dy = ~~dy;
}
- this.backBufferContext2D.drawImage(image, sx, sy, sw, sh, ~~dx, ~~dy, dw, dh);
+ this.backBufferContext2D.drawImage(image, sx, sy, sw, sh, dx, dy, dw, dh);
},
/**
| 1 |
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md Have you read Fractal's [Code of Conduct](/.github/CODE_OF_CONDUCT.md)? By filing an Issue, you are expected to comply with it, including treating everyone with respect
-Do you want to ask a question? Are you looking for support? The Fractal Slack chann... | 14 |
diff --git a/angular/projects/spark-angular/src/lib/components/sprk-modal/sprk-modal.component.ts b/angular/projects/spark-angular/src/lib/components/sprk-modal/sprk-modal.component.ts @@ -56,10 +56,19 @@ import * as _ from 'lodash';
<footer
*ngIf="modalType === 'choice'"
- class="sprk-o-Stack__item sprk-c-Modal__foote... | 3 |
diff --git a/client/components/main/dueCards.js b/client/components/main/dueCards.js @@ -69,7 +69,7 @@ class DueCardsComponent extends CardSearchPagedComponent {
queryParams.addPredicate(OPERATOR_USER, Meteor.user().username);
}
- this.runGlobalSearch(queryParams.getParams());
+ this.runGlobalSearch(queryParams.getQuer... | 1 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,7 +10,19 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
-## [1.44.4] -- 2019-01-22
+## [1.44.1] -- 2019-01-24
+
+### Fixed
+- Fix `mesh3d` rendering on (some) mobile devices (bug introduced in 1.4... | 3 |
diff --git a/blog/2020-11-11-version-1-6/index.md b/blog/2020-11-11-version-1-6/index.md @@ -13,8 +13,8 @@ We have updated the Corona-Warn-App to version 1.6, which is now available in Ap
<!-- overview -->
-If the risk status changes from an increased risk (red) back to a low risk (green), the Corona-Warn-App informs u... | 7 |
diff --git a/assets/js/modules/analytics/datastore/tags.test.js b/assets/js/modules/analytics/datastore/tags.test.js @@ -283,7 +283,14 @@ describe( 'modules/analytics tags', () => {
} );
it( 'returns undefined if existing tag has not been loaded yet', async () => {
- muteConsole( 'error' );
+ fetch
+ .doMockOnceIf(
+ /... | 14 |
diff --git a/src/web/html/index.html b/src/web/html/index.html <div class="title no-select">
<label for="output-text">Output</label>
<span class="float-right">
+ <button type="button" class="btn btn-primary bmd-btn-icon tab-buttons" id="btn-previous-tab" data-toggle="tooltip" title="Go to the previous tab">
+ <i class=... | 0 |
diff --git a/Source/Core/EllipsoidalOccluder.js b/Source/Core/EllipsoidalOccluder.js @@ -42,7 +42,7 @@ define([
*/
function EllipsoidalOccluder(ellipsoid, cameraPosition) {
//>>includeStart('debug', pragmas.debug);
- Check.defined('ellipsoid', ellipsoid);
+ Check.typeOf.object('ellipsoid', ellipsoid);
//>>includeEnd('d... | 3 |
diff --git a/common/lib/client/auth.js b/common/lib/client/auth.js @@ -424,7 +424,7 @@ var Auth = (function() {
return;
}
var objectSize = JSON.stringify(tokenRequestOrDetails).length;
- if(objectSize > MAX_TOKENOBJECT_LENGTH) {
+ if(objectSize > MAX_TOKENOBJECT_LENGTH && !authOptions.suppressMaxLengthCheck) {
callback... | 11 |
diff --git a/src/commands/PublishCommand.js b/src/commands/PublishCommand.js @@ -247,7 +247,7 @@ export default class PublishCommand extends Command {
publishPackagesToNpm(callback) {
this.logger.info("publish", "Publishing packages to npm...");
- this.npmPublishAsPrerelease((err) => {
+ this.npmPublish((err) => {
if (... | 10 |
diff --git a/app/shell-window/pages.js b/app/shell-window/pages.js @@ -745,7 +745,7 @@ function onDidFailLoad (e) {
}
// render failure page
- var errorPageHTML = errorPage(e.errorDescription)
+ var errorPageHTML = errorPage(e)
page.webviewEl.getWebContents().executeJavaScript('document.documentElement.innerHTML = \''+... | 9 |
diff --git a/packages/core/parcel-bundler/src/Bundler.js b/packages/core/parcel-bundler/src/Bundler.js @@ -329,7 +329,7 @@ class Bundler extends EventEmitter {
// If not in watch mode, stop the worker farm so we don't keep the process running.
if (!this.watcher && this.options.killWorkers) {
- this.stop();
+ await this... | 4 |
diff --git a/packages/bpk-component-graphic-promotion/src/BpkGraphicPromo.module.scss b/packages/bpk-component-graphic-promotion/src/BpkGraphicPromo.module.scss }
&__sponsor-logo {
- width: 9.25rem;
+ width: auto;
+ max-width: 9.25rem;
+ height: auto;
+ max-height: 3.75rem;
}
&__cta {
| 12 |
diff --git a/src/lib/API/api.js b/src/lib/API/api.js @@ -294,9 +294,9 @@ export class APIService {
/**
* `/verify/topwallet` post api call. Tops users wallet
*/
- verifyTopWallet(): Promise<$AxiosXHR<any>> {
- return this.client.post('/verify/topwallet')
- }
+ verifyTopWallet: Promise<$AxiosXHR<any>> = throttle(() => t... | 0 |
diff --git a/src/canvas/view/FrameWrapView.js b/src/canvas/view/FrameWrapView.js @@ -106,26 +106,19 @@ export default Backbone.View.extend({
*/
updateDim() {
const { em, el, $el, model, classAnim } = this;
- const { width, height } = model.attributes;
- const { style } = el;
- const currW = style.width || '';
- const c... | 12 |
diff --git a/src/client/js/services/UserGroupDetailContainer.js b/src/client/js/services/UserGroupDetailContainer.js @@ -132,8 +132,7 @@ export default class UserGroupDetailContainer extends Container {
async fetchApplicableUsers(searchWord) {
const res = await this.appContainer.apiv3.get(`/user-groups/${this.state.use... | 12 |
diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml @@ -14,8 +14,13 @@ jobs:
uses: dependabot/fetch-metadata@v1.1.1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- - name: Enable auto-merge for Dependabot PRs on Stripe SDKs
- if: ${{contains(steps.metadata.outputs.dependency-name, 'Stripe... | 0 |
diff --git a/ui/scss/component/_file-render.scss b/ui/scss/component/_file-render.scss .vjs-big-play-button {
@extend .button--icon;
@extend .button--play;
+ background-color: rgba(0,0,0,0.6);
border: none;
position: static;
z-index: 2;
}
}
}
+
+ .video-js:hover {
+
+ .vjs-big-play-button {
+ background-color: rgba(var... | 7 |
diff --git a/assets/js/components/activation/activation-app.js b/assets/js/components/activation/activation-app.js @@ -99,7 +99,6 @@ export function ActivationApp() {
<Button
id="start-setup-link"
className="googlesitekit-start-setup"
- href={ buttonURL }
onClick={ onButtonClick }
>
{ buttonLabel }
| 2 |
diff --git a/magda-web-client/src/config.ts b/magda-web-client/src/config.ts @@ -33,9 +33,9 @@ const defaultDateFormats: string[] = [
];
// Local minikube/docker k8s cluster
-const fallbackApiHost = "http://localhost:30100/";
+// const fallbackApiHost = "http://localhost:30100/";
// Dev server
-// const fallbackApiHost... | 5 |
diff --git a/sox.features.js b/sox.features.js const [[name, text]] = Object.entries(opt);
$('#currentValues').append(`
<div>
- ${name} - <i>${text}</i>
- <button class="grid--cell s-btn s-btn__muted discard-question sox-editComment-editDialogButton" data-name="${name}">Edit</button>
- <button class="grid--cell s-btn s... | 4 |
diff --git a/.travis.yml b/.travis.yml @@ -26,6 +26,10 @@ script:
- npm pack
- echo -en 'travis_fold:end:script.makeZipFile\\r'
+ - echo 'buildApps' && echo -en 'travis_fold:start:script.buildApps\\r'
+ - npm run buildApps
+ - echo -en 'travis_fold:end:script.buildApps\\r'
+
- echo 'deploy' && echo -en 'travis_fold:sta... | 3 |
diff --git a/packages/gatsby/src/schema/infer-graphql-type.js b/packages/gatsby/src/schema/infer-graphql-type.js @@ -589,10 +589,12 @@ export function inferObjectStructureFromNodes({
// pointing to a file (from another file).
} else if (
nodes[0].internal.type !== `File` &&
- ((_.isString(value) && shouldInferFile(node... | 11 |
diff --git a/api/readme.md b/api/readme.md - [Rand Strings](./syntax/rand.md)
- [Property Maps](./syntax/property-maps.md)
- [Available Units](./syntax/units.md)
-
-## License
-
-(The MIT License)
-
-Copyright (c) Oleg Solomka [@LegoMushroom](https://twitter.com/legomushroom) [legomushroom@gmail.com](mailto:legomushroo... | 2 |
diff --git a/src/plots/gl2d/scene2d.js b/src/plots/gl2d/scene2d.js @@ -525,11 +525,23 @@ proto.updateTraces = function(fullData, calcData) {
};
proto.updateFx = function(dragmode) {
+ // switch to svg interactions in lasso/select mode
if(dragmode === 'lasso' || dragmode === 'select') {
this.mouseContainer.style['pointe... | 12 |
diff --git a/tools/cfpack/src/index.js b/tools/cfpack/src/index.js @@ -51,11 +51,13 @@ const mkdirs = (root, additional, cb) => {
// Adjust a file: dependency to our packed app structure, by converting
// relative path from the module to a relative path to our package root
const local = (root, additional, d) => {
+ if ... | 7 |
diff --git a/src/angular/projects/spark-angular/package-lock.json b/src/angular/projects/spark-angular/package-lock.json "lockfileVersion": 1,
"requires": true,
"dependencies": {
- "minimist": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
- "integrity": "sha1-o1AIsg9B... | 3 |
diff --git a/articles/api-auth/tutorials/verify-access-token.md b/articles/api-auth/tutorials/verify-access-token.md @@ -120,16 +120,12 @@ You can find a sample API implementation, in Node.js, in [Server Client + API: N
This document is part the [Server + API Architecture Scenario](/architecture-scenarios/application/s... | 0 |
diff --git a/web/viewer.css b/web/viewer.css @@ -977,6 +977,7 @@ a.secondaryToolbarButton[href="#"] {
white-space: normal;
border-radius: 0;
box-sizing: border-box;
+ display: inline-block;
}
.secondaryToolbarButton > span {
padding-inline-end: 4px;
@@ -1454,8 +1455,7 @@ dialog :link {
}
.visibleLargeView,
-.visibleMed... | 12 |
diff --git a/magda-web-client/src/Components/Header/Header.scss b/magda-web-client/src/Components/Header/Header.scss position: absolute;
width: 100%;
z-index: 1;
+ li {
+ border-bottom: 1px solid gray;
+ padding-left: 10px;
+ }
+ li:last-child {
+ border-bottom: none;
+ }
+ ul {
+ padding-bottom: 0px;
+ }
}
.mobile-nav... | 13 |
diff --git a/packages/app/src/server/routes/page.js b/packages/app/src/server/routes/page.js import { pagePathUtils } from '@growi/core';
-import urljoin from 'url-join';
import { body } from 'express-validator';
import mongoose from 'mongoose';
+import urljoin from 'url-join';
import loggerFactory from '~/utils/logger... | 9 |
diff --git a/README.md b/README.md @@ -48,6 +48,26 @@ And install dependencies
* Install Xcode from the App Store and accept the license agreement.
* Run Xcode once so that it can install additional components it will need.
+To develop on a real device locally you will need to install the development provisioning profi... | 0 |
diff --git a/docs/user-guide/faq.md b/docs/user-guide/faq.md @@ -27,7 +27,7 @@ The CLI can also be used from within [npm run scripts](https://blog.keithcirkel.
## How do I lint using Git pre-commit hooks?
-[lint-staged](https://github.com/okonet/lint-staged) is a NodeJS script that supports running stylelint against Gi... | 4 |
diff --git a/rocket/bot.js b/rocket/bot.js @@ -28,6 +28,6 @@ const processMessages = async (err, message, messageOptions) => {
export const sendToUser = async (message, user) => {
await driver.sendDirectToUser(message, user);
-}
+};
runBot();
| 3 |
diff --git a/src/dev/fdm/Ultimaker.Ultimaker2 b/src/dev/fdm/Ultimaker.Ultimaker2 "M104 S{temp} T{tool} ; set extruder temperature",
"M140 S{bed_temp} T{tool} ; set bed temperature",
"G90 ; set absolute positioning mode",
- "M83 ; set relative positioning for extruder",
+ "M82 ; set absolute positioning for extruder",
"... | 3 |
diff --git a/app/src/scripts/utils/orcid.js b/app/src/scripts/utils/orcid.js @@ -75,12 +75,13 @@ let orcid = {
// Setup a timer to check for the redirect URI
this.oauthTimer = window.setInterval(() => {
try {
- if (this.oauthWindow.closed) {
- clearInterval(this.oauthTimer)
- return callback(true)
- }
+ if (
+ this.oau... | 9 |
diff --git a/src/createLogger.js b/src/createLogger.js @@ -13,7 +13,7 @@ governing permissions and limitations under the License.
import window from "@adobe/reactor-window";
/**
- * Prefix to use on all messages. The rocket unicode doesn't work on IE 10.
+ * Prefix to use on all messages.
* @type {string}
*/
const SDK_... | 2 |
diff --git a/src/UnitTests/Core/Commands/ScheduleCommandTests/ProcessShould.cs b/src/UnitTests/Core/Commands/ScheduleCommandTests/ProcessShould.cs @@ -22,10 +22,8 @@ public ScheduleCommandShould()
{
var entities = new List<ScheduleEntity>
{
- new ScheduleEntity { ExampleDateTime = new DateTimeOffset(2018,6,18,18, 0, 0,... | 9 |
diff --git a/backend/app/app.routes.js b/backend/app/app.routes.js import express from "express";
-import auth from "./app.auth";
-import passport from "passport";
+import authenticate from "./middlewares/authenticate";
+import {
+ authStrategy,
+ authenticationHandler,
+ authenticationCallbackHandler,
+ currentUser,
+... | 7 |
diff --git a/src/assets/style/reqres.scss b/src/assets/style/reqres.scss font-weight: bold;
}
-// .reqResContainer-inner {
-// // position: relative;
-// // height: auto;
-// width: auto;
-// height: auto;
-// overflow-x: hidden;
-// overflow-y: scroll;
-// white-space: nowrap;
-// transition: transform 0.3s ease-in-ou... | 1 |
diff --git a/OutputCachingMiddleware/src/OutputCachingMiddleware.Web/OutputCachingMiddlewareWebModule.cs b/OutputCachingMiddleware/src/OutputCachingMiddleware.Web/OutputCachingMiddlewareWebModule.cs @@ -198,6 +198,7 @@ public class OutputCachingMiddlewareWebModule : AbpModule
app.UseAuthentication();
app.UseAbpOpenIddi... | 5 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
+## [v1.0.0-rc.2] - 2021-03-30
+
### Added
### Changed
@@ -400,6 +402,7 @@ Thanks @hgs-msmith, @matthewhanson, @hgs-trutherford, @rouault, @joshfix, @alkam
[Unrelease... | 3 |
diff --git a/bin/oref0-bash-common-functions.sh b/bin/oref0-bash-common-functions.sh @@ -64,10 +64,12 @@ print_usage () {
echo "$HELP_TEXT"
}
-# Check that the current working directory is the myopenaps directory; if it
-# isn't, print a message to stderr and exit with status 1 (failure). We assume
-# we're in the righ... | 10 |
diff --git a/app/builtin-pages/views/history.js b/app/builtin-pages/views/history.js @@ -96,7 +96,7 @@ export function render () {
Clear Browsing History
</button>
<select id="delete-period">
- <option value="day">from today</option>
+ <option value="day" selected>from today</option>
<option value="week">from this week... | 12 |
diff --git a/RobotNXT/src/main/java/de/fhg/iais/roberta/visitor/codegen/NxtNxcVisitor.java b/RobotNXT/src/main/java/de/fhg/iais/roberta/visitor/codegen/NxtNxcVisitor.java @@ -1292,10 +1292,14 @@ public final class NxtNxcVisitor extends AbstractCppVisitor implements INxtVisit
private void generateSensors() {
Map<String,... | 14 |
diff --git a/css/base/base.scss b/css/base/base.scss /**
- * DDG Chrome Extension Base Styles
+ * DDG Chrome Extension Resets & Base Styles
*/
html, body {
@@ -37,6 +37,14 @@ section, ul, ol, li {
}
}
+form, input, select, option, button {
+ outline: none;
+
+ * {
+ outline: none;
+ }
+}
+
/* Fonts */
@@ -72,11 +80,13 ... | 2 |
diff --git a/src/cljs_api_gen/parse.clj b/src/cljs_api_gen/parse.clj docstring (let [d (first form)]
(when (string? d) d))
form (if docstring (drop 1 form) form)
+ [opts form] (loop [opts {}
+ [a b & etc :as form] form]
+ (if (keyword? a)
+ (recur (assoc opts a b) etc)
+ [opts form]))
method-lists form
pmethods (mapv p... | 11 |
diff --git a/src/components/pages/homepage/large-project.module.scss b/src/components/pages/homepage/large-project.module.scss @import '~scss/breakpoints.module.scss';
+@import '~scss/colors.module.scss';
.wrapper {
padding: 60px 0;
- border-top: 1px solid black;
- border-bottom: 1px solid black;
+ border-top: 1px soli... | 1 |
diff --git a/lib/winston/transports/file.js b/lib/winston/transports/file.js @@ -339,7 +339,7 @@ File.prototype.stat = function stat(callback) {
}
if (err) {
- debug(`err ${err.code}`, fullpath);
+ debug('err ' + err.code, fullpath);
return callback(err);
}
| 2 |
diff --git a/cypress/integration/other/configuration.spec.js b/cypress/integration/other/configuration.spec.js @@ -110,11 +110,10 @@ describe('Configuration', () => {
cy.viewport(1440, 1024);
cy.visit(url);
- cy.get('svg').then((svgs) => {
- svgs[0].matchImageSnapshot(
+ cy.get('svg');
+ cy.matchImageSnapshot(
'configu... | 1 |
diff --git a/generators/server/templates/src/main/java/package/web/rest/UserResource.java.ejs b/generators/server/templates/src/main/java/package/web/rest/UserResource.java.ejs @@ -196,6 +196,7 @@ public class UserResource {
*/
@GetMapping("/users")
@Timed
+ @Secured(AuthoritiesConstants.ADMIN)
<%_ if (databaseType ===... | 11 |
diff --git a/src/og/shaders/drawnode.js b/src/og/shaders/drawnode.js @@ -40,6 +40,27 @@ const __BLEND1__ =
const DEF_BLEND = `#define blend(DEST, SAMPLER, OFFSET, OPACITY) src = texture( SAMPLER, OFFSET.xy + vTextureCoord.xy * OFFSET.zw ); DEST = DEST * (1.0 - src.a * OPACITY) + src * OPACITY;`;
const DEF_BLEND_WEBGL1 ... | 1 |
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -302,7 +302,7 @@ favorite environment and rerun tests inside the docker environment.
**hint** sometimes building inside the image has problems with `node-sass` library
```text
-Error: Missing binding /cypress-monorepo/packages/desktop-gui/node_modules/node-sass/vendor/l... | 10 |
diff --git a/articles/product-lifecycle/migrations.md b/articles/product-lifecycle/migrations.md @@ -53,14 +53,6 @@ We are actively migrating customers to new behaviors for all **Deprecations** li
The Webtask engine powering Auth0 extensibility points currently uses Node 4. Beginning <strong>30 April 2018</strong>, <a ... | 2 |
diff --git a/lib/node/index.js b/lib/node/index.js @@ -468,18 +468,30 @@ Request.prototype._redirect = function(res){
* .auth('tobi', 'learnboost')
* .auth('tobi:learnboost')
* .auth('tobi')
+ * .auth(accessToken, { type: 'bearer' })
*
* @param {String} user
- * @param {String} pass
+ * @param {String} [pass]
+ * @para... | 0 |
diff --git a/buildout.cfg b/buildout.cfg @@ -53,7 +53,7 @@ webtest = git https://github.com/Pylons/webtest.git
WSGIProxy2 = git https://github.com/lrowe/WSGIProxy2.git
zope.sqlalchemy = git https://github.com/zopefoundation/zope.sqlalchemy.git
pytest-bdd = git https://github.com/lrowe/pytest-bdd.git branch=allow-any-st... | 3 |
diff --git a/app/assets/locales/locale-en.json b/app/assets/locales/locale-en.json "wallet_text": "Control the details of your local wallet.",
"accounts_text": "Your accounts list.",
"password_text": "Change your password.",
- "backup_text": "**IMPORTANT** NOTICE: To provide enhanced security, the web-based wallet will... | 13 |
diff --git a/src/sdk/conference/channel.js b/src/sdk/conference/channel.js @@ -860,8 +860,8 @@ export class ConferencePeerConnectionChannel extends EventDispatcher {
const pcConfiguration = this._config.rtcConfiguration || {};
if (Utils.isChrome()) {
pcConfiguration.sdpSemantics = 'unified-plan';
- }
pcConfiguration.bu... | 12 |
diff --git a/components/labelsviewer/labelsviewer.css b/components/labelsviewer/labelsviewer.css -.labels-editor, .labels-viewer, .labels-container {
+.labels-editor, .labels-viewer {
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-... | 1 |
diff --git a/src/encoded/tests/data/inserts/user.json b/src/encoded/tests/data/inserts/user.json ],
"timezone": "US/Pacific",
"uuid": "7dfbe70c-995d-4bc5-94c3-7d39d2baf001"
+ },
+ {
+ "email": "kritijn21@gmail.com",
+ "first_name": "Kriti",
+ "groups": [
+ "admin"
+ ],
+ "job_title": "Software Engineer",
+ "lab": "/lab... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.