code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/lib/cmds/login.js b/lib/cmds/login.js @@ -83,7 +83,7 @@ async function login({ context, managementToken: managementTokenFlag }) {
const tokenAnswer = await inquirer.prompt([
{
- type: 'input',
+ type: 'password',
name: 'managementToken',
message: 'Paste your token here:',
validate: val => /^[a-zA-Z0-9_-]{4... | 1 |
diff --git a/src/utils/commonfunctions.js b/src/utils/commonfunctions.js @@ -26,7 +26,7 @@ export const formatLastUpdated = (unformattedDate) => {
};
export const parseIndiaDate = (isoDate) => {
- return new Date(isoDate + 'T00:00:00+0530');
+ return new Date(isoDate + 'T00:00:00+05:30');
};
export const formatDate = (... | 1 |
diff --git a/articles/migrations/index.md b/articles/migrations/index.md @@ -36,7 +36,10 @@ Auth0 is expanding into new US regions, and traffic originating from these regio
If you are using a custom database connection, rule, and/or custom email provider that connects to your environment, **and** you have implemented f... | 0 |
diff --git a/generators/heroku/index.js b/generators/heroku/index.js @@ -868,13 +868,6 @@ module.exports = class extends BaseBlueprintGenerator {
}
}
},
- printOktaAdminPassword() {
- if (this.abort) return;
-
- if (this.oktaAdminPassword) {
- this.log(chalk.blue(`\nTake note of this password! You will need it on your ... | 2 |
diff --git a/js/models/site.es6.js b/js/models/site.es6.js @@ -5,7 +5,7 @@ var backgroundPage = chrome.extension.getBackgroundPage();
function Site (attrs) {
attrs.httpsIcon = 'orange';
- attrs.httpsStatusText = 'Forced Secure Connection';
+ attrs.httpsStatusText = 'Unsecure Connection';
attrs.blockMessage = 'Trackers ... | 4 |
diff --git a/server/admin.api.js b/server/admin.api.js @@ -32,7 +32,8 @@ const junkBrewQuery = HomebrewModel.find({
createdAt : {
$lt : Moment().subtract(30, 'days').toDate()
}
-});
+}).maxTimeMS(60000);
+
router.get('/admin/cleanup', mw.adminOnly, (req, res)=>{
junkBrewQuery.exec((err, objs)=>{
if(err) return res.stat... | 11 |
diff --git a/assets/js/components/user-input/UserInputPreview.js b/assets/js/components/user-input/UserInputPreview.js @@ -74,10 +74,10 @@ export default function UserInputPreview( { back, goTo } ) {
<div className="googlesitekit-user-input__preview">
<Row>
<Cell lgSize={ 12 } mdSize={ 8 } smSize={ 4 }>
- { ( isSavingS... | 2 |
diff --git a/token-metadata/0x08d967bb0134F2d07f7cfb6E246680c53927DD30/metadata.json b/token-metadata/0x08d967bb0134F2d07f7cfb6E246680c53927DD30/metadata.json "symbol": "MATH",
"address": "0x08d967bb0134F2d07f7cfb6E246680c53927DD30",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/server/controllers/api/claim/publish/index.js b/server/controllers/api/claim/publish/index.js @@ -102,13 +102,7 @@ const claimPublish = ({ body, files, headers, ip, originalUrl, user, tor }, res)
sendGATimingEvent('end-to-end', 'publish', fileType, gaStartTime, Date.now());
})
.catch(error => {
- if (error... | 9 |
diff --git a/modules/Collections/views/partials/entries.php b/modules/Collections/views/partials/entries.php <tr>
<th width="20"><input class="uk-checkbox" type="checkbox" data-check="all"></th>
<th width="{field.name == '_modified' || field.name == '_created' ? '100':''}" class="uk-text-small" each="{field,idx in fiel... | 11 |
diff --git a/src/app/services/chat/providers/-provider.js b/src/app/services/chat/providers/-provider.js @@ -47,6 +47,7 @@ export default class ChatProvider {
await launch( this.exec, params );
}
+ /* istanbul ignore next */
/**
* Resolve the provider's executable path
* @param {Object} config
@@ -80,6 +81,7 @@ export ... | 8 |
diff --git a/aura-impl/src/main/resources/aura/AuraComponentService.js b/aura-impl/src/main/resources/aura/AuraComponentService.js @@ -620,7 +620,7 @@ AuraComponentService.prototype.createComponentInstance = function(config, localC
// See if there is a component specific class
var def = config["componentDef"];
- var de... | 14 |
diff --git a/app/src/index.js b/app/src/index.js @@ -16,7 +16,7 @@ import RoomContext from './RoomContext';
import deviceInfo from './deviceInfo';
import * as meActions from './actions/meActions';
import UnsupportedBrowser from './components/UnsupportedBrowser';
-import ChooseRoom from './components/ChooseRoom';
+impor... | 14 |
diff --git a/tests/e2e/specs/modules/tagmanager/setup.test.js b/tests/e2e/specs/modules/tagmanager/setup.test.js @@ -135,7 +135,6 @@ describe( 'Tag Manager module setup', () => {
page.waitForNavigation(),
] );
await expect( page ).toMatchElement( 'script[src^="https://www.googletagmanager.com/gtm.js?id=GTM-ABCXYZ"]' );... | 2 |
diff --git a/src/components/signup/PhoneForm.web.js b/src/components/signup/PhoneForm.web.js // @flow
import React from 'react'
+import { HelperText } from 'react-native-paper'
import PhoneInput from 'react-phone-number-input'
-import isMobilePhone from '../../lib/validators/isMobilePhone'
import 'react-phone-number-in... | 0 |
diff --git a/index.js b/index.js @@ -96,7 +96,6 @@ const ClippedPlane = (() => {
export default () => {
const app = useApp();
- const {renderer, scene, camera} = useInternals();
const physics = usePhysics();
// const {CapsuleGeometry} = useGeometries();
const {WebaverseShaderMaterial} = useMaterials();
@@ -437,7 +436,7... | 2 |
diff --git a/articles/tutorials/generic-oauth2-connection-examples.md b/articles/tutorials/generic-oauth2-connection-examples.md @@ -46,20 +46,24 @@ After the call completes successfully, you will be able to login using these new
* [Create an application](https://cloud.digitalocean.com/settings/applications/new)
* Copy... | 0 |
diff --git a/website/lexonomy.js b/website/lexonomy.js @@ -22,6 +22,7 @@ ops.mailtransporter = nodemailer.createTransport(siteconfig.mailconfig);
const PORT = process.env.PORT || siteconfig.port || 80;
const jwt = require("jsonwebtoken");
const fluxslt = require("fluxslt");
+const url = require("url");
// Log the reque... | 13 |
diff --git a/src/utils/helpers.spec.js b/src/utils/helpers.spec.js // @flow weak
import { assert } from 'chai';
+import { spy, useFakeTimers } from 'sinon';
import {
transform,
contains,
find,
+ throttle,
} from './helpers';
describe('utils//helpers.js', () => {
@@ -53,4 +55,60 @@ describe('utils//helpers.js', () => {
... | 0 |
diff --git a/app-object.js b/app-object.js @@ -91,8 +91,10 @@ document.body.insertBefore(renderer2.domElement, canvas);
const scene2 = new THREE.Scene();
const scene3 = new THREE.Scene();
-class AppManager {
+class AppManager extends EventTarget {
constructor() {
+ super();
+
this.apps = [];
this.animationLoops = [];
t... | 0 |
diff --git a/examples/skin_blinker.js b/examples/skin_blinker.js @@ -18,7 +18,7 @@ const bot = mineflayer.createBot({
password: process.argv[5]
})
-var show = true
+let show = true
function toggleSkin () {
show = !show
@@ -35,7 +35,5 @@ function toggleSkin () {
}
bot.on('spawn', () => {
- setInterval(() => {
- toggleSk... | 7 |
diff --git a/js/webview/textExtractor.js b/js/webview/textExtractor.js @@ -4,7 +4,7 @@ function extractPageText (doc, win) {
var maybeNodes = [].slice.call(doc.body.childNodes)
var textNodes = []
- var ignore = 'link, style, script, noscript, .visually-hidden, .visuallyhidden, [role=presentation], [hidden], [style*="di... | 8 |
diff --git a/src/scss/components/_output-control.scss b/src/scss/components/_output-control.scss padding: 0;
border-radius: 0;
max-height: calc(100vh - 140px);
- overflow-y: auto;
+ overflow-y: visible;
@include theme('dark') {
box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.6);
| 11 |
diff --git a/project/plugins.sbt b/project/plugins.sbt logLevel := Level.Warn
-resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
+resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/"
// The Sonatype snapshots repository
resolvers += "Sonatype snapshots" ... | 3 |
diff --git a/quasar/src/components/datetime/QDate.js b/quasar/src/components/datetime/QDate.js @@ -195,7 +195,13 @@ export default Vue.extend({
else {
const gDate = toGregorian(this.innerModel.year, this.innerModel.month, 1)
date = new Date(gDate.gy, gDate.gm - 1, gDate.gd)
- endDay = jalaaliMonthLength(this.innerModel... | 1 |
diff --git a/test/endtoend/wdio.remote.conf.js b/test/endtoend/wdio.remote.conf.js @@ -43,9 +43,9 @@ exports.config = {
{ browserName: 'internet explorer', version: '10.0', platform: 'Windows 7', 'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER, build: process.env.TRAVIS_BUILD_NUMBER },
{ browserName: 'chrome', versi... | 0 |
diff --git a/package.json b/package.json "publish:minor": "npm run build && node bin/index.js --publish=minor",
"publish:major": "npm run build && node bin/index.js --publish=major",
"start": "npm-run-all --parallel 'build:code -- --watch' 'build:docs -- -w -b'",
- "static-publish": "npm run build && static-publish pub... | 4 |
diff --git a/frontend/src/jitsi/JitsiConfig.js b/frontend/src/jitsi/JitsiConfig.js @@ -24,9 +24,9 @@ export const adaptJitsiConfig = (roomId, parentNode, meetingSettings) => {
}
},
interfaceConfigOverwrite: {
- SHOW_JITSI_WATERMARK: false,
- SHOW_WATERMARK_FOR_GUESTS: false,
- SHOW_BRAND_WATERMARK: false
+ SHOW_JITSI_W... | 1 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -6,13 +6,16 @@ The history of all changes to react-polymorph.
vNext
=====
+1.0.0
+=====
+
### Breaking Changes :boom:
- `Input` now shows errors on hover and focus by default which can be configured via two new props:
```ts
- isShowingErrorOnFocus: boolean,
- isShowingErrorOn... | 6 |
diff --git a/token-metadata/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/metadata.json b/token-metadata/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/metadata.json "symbol": "REQ",
"address": "0x8f8221aFbB33998d8584A2B05749bA73c37a938a",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/ApiGateway.js b/src/ApiGateway.js @@ -931,7 +931,7 @@ module.exports = class ApiGateway {
}
try {
- x = userHandler(event, lambdaContext, (err, result) => {
+ x = userHandler(event, lambdaContext, (err, data) => {
setTimeout(cleanup, 0);
if (this.options.showDuration) {
@@ -943,7 +943,7 @@ module.expor... | 10 |
diff --git a/packages/app/src/components/Page/DisplaySwitcher.tsx b/packages/app/src/components/Page/DisplaySwitcher.tsx @@ -76,7 +76,7 @@ const DisplaySwitcher = (): JSX.Element => {
<PageListIcon />
</div>
{t('page_list')}
- {currentPage?.descendantCount != null && <CountBadge count={currentPage.descendantCount + 1} ... | 7 |
diff --git a/js/control/TrackMessages.js b/js/control/TrackMessages.js @@ -241,32 +241,22 @@ BR.TrackMessages = L.Class.extend({
// 1.1 meters of a point on the chart (there are 111,111 meters in a degree)
const exactMatchRounding = 1.1 / 111111;
- let idx = 0;
+ const point = turf.point([evt.latlng.lng, evt.latlng.lat... | 14 |
diff --git a/src/components/nodes/sequenceFlow/sequenceFlow.vue b/src/components/nodes/sequenceFlow/sequenceFlow.vue @@ -58,7 +58,7 @@ export default {
return this.validateIncoming();
},
validateIncoming() {
- return typeof this.targetConfig.validateIncoming === 'undefined' ||
+ return this.targetConfig.validateIncomin... | 2 |
diff --git a/src/components/footer.js b/src/components/footer.js @@ -164,7 +164,7 @@ const Footer = (props) => {
</li>
<li>
<a href="https://www.google.com/maps/place/845+Market+St+%23450a,+San+Francisco,+CA+94103">
- 845 Market St, #450A, San Francisco, CA 94103
+ 845 Market St, #450A<br />San Francisco, CA 94103
... | 7 |
diff --git a/shared/middlewares/security.js b/shared/middlewares/security.js @@ -78,7 +78,7 @@ function securityMiddleware(
// Defines the origins from which images can be loaded.
// @note: Leave open to all images, too much image coming from different servers.
- imgSrc: ['https:', 'http:', "'self'", 'data:'],
+ imgSrc... | 11 |
diff --git a/assets/src/edit-story/components/canvas/pagemenu/index.js b/assets/src/edit-story/components/canvas/pagemenu/index.js @@ -46,10 +46,12 @@ import {
import WithTooltip from '../../tooltip';
import useCanvas from '../useCanvas';
+const HEIGHT = 28;
+
const Wrapper = styled.div`
display: flex;
align-items: fle... | 13 |
diff --git a/example/webpack2/app/components/View.js b/example/webpack2/app/components/View.js @@ -20,7 +20,7 @@ class TranslatableView extends React.Component {
}, 3000);
}
- render() {console.warn('render')
+ render() {
const { t } = this.props;
const { show } = this.state;
| 13 |
diff --git a/layouts/partials/js.html b/layouts/partials/js.html </script>
{{- end -}}
+{{- $.Scratch.Set "loaded_scripts" slice -}}
{{- range uniq ($.Scratch.Get "js") -}}
+ {{- if or (and .name (not (in ($.Scratch.Get "loaded_scripts") .name))) (not (isset . "name")) -}}
{{- if .url -}}
<script
{{- if (.async | defau... | 0 |
diff --git a/js/webcomponents/bisweb_painttoolelement.js b/js/webcomponents/bisweb_painttoolelement.js @@ -1077,10 +1077,10 @@ class PaintToolElement extends HTMLElement {
};
- webutil.createMenuItem(tmenu,'Paint Tool',function() {
- webutil.activateCollapseElement(self.internal.parentDomElement);
- });
- webutil.creat... | 2 |
diff --git a/package.json b/package.json "test-export": "node tasks/test_export.js",
"test-syntax": "node tasks/test_syntax.js",
"test-bundle": "node tasks/test_bundle.js",
- "test": "npm run citest-jasmine && npm run test-image && npm run test-image-gl2d && npm run test-syntax && npm run test-bundle",
+ "test": "npm r... | 0 |
diff --git a/Source/DataSources/KmlTourWait.js b/Source/DataSources/KmlTourWait.js @@ -6,6 +6,8 @@ import defined from "../Core/defined.js";
* @constructor
*
* @param {Number} duration entry duration
+ *
+ * @see KmlTour
*/
function KmlTourWait(duration) {
this.type = "KmlTourWait";
| 3 |
diff --git a/src/components/screens/ChapterScreen/LanguageMenu/index.stories.js b/src/components/screens/ChapterScreen/LanguageMenu/index.stories.js @@ -65,6 +65,297 @@ storiesOf('Screens|ChapterScreen/LanguageMenu', module)
}}
/>
))
+ .add('w/ 2 framework, 2 translations', () => (
+ <LanguageMenu
+ {...sharedProps}
+ ... | 3 |
diff --git a/src/ns_rebalancer.erl b/src/ns_rebalancer.erl @@ -81,7 +81,7 @@ orchestrate_failover(Nodes) ->
master_activity_events:note_failover(Nodes),
failover(Nodes),
ale:info(?USER_LOGGER, "Failed over ~p: ok", [Nodes]),
- ns_cluster:counter_inc(failover_node),
+ ns_cluster:counter_inc(failover),
ns_cluster_members... | 10 |
diff --git a/codegens/php-httprequest2/test/unit/converter.test.js b/codegens/php-httprequest2/test/unit/converter.test.js var expect = require('chai').expect,
sdk = require('postman-collection'),
- fs = require('fs'),
-
convert = require('../../lib/index').convert,
sanitize = require('../../lib/util/sanitize').sanitiz... | 14 |
diff --git a/templates/customdashboard/publicdashboard/program_dashboard.html b/templates/customdashboard/publicdashboard/program_dashboard.html <script>
$(document).ready(() => {
- $('#summaryTable').dataTable()
+ $('#summaryTable').dataTable();
+ $('#indicatorSummary').dataTable();
})
</script>
</div>
</div>
</div>
-... | 3 |
diff --git a/lib/assets/javascripts/dashboard/views/account/account-form.tpl b/lib/assets/javascripts/dashboard/views/account/account-form.tpl </div>
<% } %>
- <% if ((!isInsideOrg || isOrgOwner) && !isCartoDBHosted) { %>
- <div class="FormAccount-title">
- <p class="FormAccount-titleText"><%= _t('account.views.form.ac... | 5 |
diff --git a/config/sidebar.yml b/config/sidebar.yml @@ -1021,8 +1021,6 @@ articles:
children:
- title: Standard Infra Reqs
url: /private-cloud/private-cloud-onboarding/standard-private-cloud-infrastructure-requirements
- - title: Customer Hosted Infra Reqs
- url: /private-cloud/private-cloud-onboarding/customer-hosted... | 2 |
diff --git a/weapons-manager.js b/weapons-manager.js @@ -1841,6 +1841,14 @@ const itemSpecs = [
"name": "mirror",
"start_url": "https://avaer.github.io/mirror/index.js"
},
+ {
+ "name": "lightsaber",
+ "start_url": "https://avaer.github.io/lightsaber/index.js"
+ },
+ {
+ "name": "shield",
+ "start_url": "https://avaer.... | 0 |
diff --git a/scripts/autogenerate.js b/scripts/autogenerate.js @@ -81,7 +81,7 @@ function buildProperties (attributes, attrName) {
return {
name: camelCase(attrName),
doc: {
- description: attributes[attrName].doc,
+ description: formatDescription(attributes[attrName].doc),
requires: getRequires(attributes[attrName].re... | 3 |
diff --git a/examples/realitytabs.html b/examples/realitytabs.html @@ -929,7 +929,7 @@ const _makeRig = () => {
THREE.ClampToEdgeWrapping,
THREE.ClampToEdgeWrapping,
THREE.LinearMipMapLinearFilter,
- THREE.NearestFilter,
+ THREE.LinearFilter,
THREE.RGBAFormat,
THREE.UnsignedByteType,
16
@@ -1159,7 +1159,7 @@ const _mak... | 12 |
diff --git a/packages/manager/modules/server-sidebar/src/controller.js b/packages/manager/modules/server-sidebar/src/controller.js @@ -105,6 +105,7 @@ export default class OvhManagerServerSidebarController {
}
buildOrderMenu() {
+ this.SidebarMenu.actionsMenuOptions = [];
return this.SessionService.getUser()
.then(({ o... | 1 |
diff --git a/src/components/Widgets/Markdown/MarkdownControl/VisualEditor/index.js b/src/components/Widgets/Markdown/MarkdownControl/VisualEditor/index.js @@ -203,10 +203,12 @@ const BackspaceCloseBlock = (options = {}) => ({
}
});
+const EditListPlugin = EditList({ types: ['bulleted-list', 'numbered-list'], typeItem: ... | 7 |
diff --git a/src/client/styles/scss/_wiki.scss b/src/client/styles/scss/_wiki.scss @@ -8,6 +8,15 @@ div.body {
}
.wiki {
+ @mixin add-left-border($width) {
+ &:before {
+ margin-right: 0.4em;
+ content: '';
+ border-left: $width solid;
+ opacity: 0.2;
+ }
+ }
+
@extend .text-break;
font-size: 15px;
@@ -29,29 +38,40 @@ ... | 7 |
diff --git a/packages/lib/src/core/helpers/layoutHelper.ts b/packages/lib/src/core/helpers/layoutHelper.ts @@ -13,7 +13,8 @@ import LOADING_WITH_COLOR_MODE from '../../common/constants/loadingWithColorMode
import SLIDE_ANIMATIONS from '../../common/constants/slideAnimations';
import GALLERY_SIZE_TYPE from '../../common... | 12 |
diff --git a/src/reducers/selectors/balance.js b/src/reducers/selectors/balance.js @@ -3,7 +3,7 @@ import BN from 'bn.js'
import { LOCKUP_MIN_BALANCE } from '../../utils/account-with-lockup'
export const selectProfileBalance = (balance) => {
- if (!balance) {
+ if (!balance || !balance.available) {
return false
}
| 9 |
diff --git a/lib/resque/do_sync_jobs.rb b/lib/resque/do_sync_jobs.rb @@ -22,7 +22,8 @@ module Resque
subscription = licensing_service.subscription(subscription_info['subscription_id'])
# Check if the subscription has been removed during the synchronization process:
if subscription.nil?
- # TODO: Remove table...
+ # Rem... | 2 |
diff --git a/test/APITests.js b/test/APITests.js @@ -226,6 +226,10 @@ describe('API Tests', () => {
});
it('APIs are independent', (done) => {
+ [div, api] = createElementAndApi(
+ simpleCenterViewConfig, { editable: false, bounded: true }
+ );
+
done();
/* Turning this test off because it periodically
* and inexplicab... | 2 |
diff --git a/src/components/TaskListItem.js b/src/components/TaskListItem.js import React, { Component } from 'react'
import { Appearance, Dimensions, StyleSheet, TouchableHighlight, TouchableOpacity, View, useColorScheme } from 'react-native'
-import { HStack, Icon, Text, VStack } from 'native-base'
+import { HStack, ... | 7 |
diff --git a/Gemfile.lock b/Gemfile.lock GIT
remote: https://github.com/italia/developers-italia-searchyll.git
- revision: db37e5422360c2306eb931cfd91c7e822c24f334
+ revision: dbdff2cb134fe77f3811068e336cf1b322202cf3
specs:
searchyll (0.10.2)
jekyll (>= 3.0)
| 4 |
diff --git a/src/Controllers/CommentsController.php b/src/Controllers/CommentsController.php @@ -17,8 +17,8 @@ class CommentsController extends Controller
public function __construct()
{
- $this->middleware('Kordy\Ticketit\Middleware\IsAdminMiddleware', ['only' => ['edit', 'update', 'destroy']]);
- $this->middleware('K... | 11 |
diff --git a/src/renderer/crypto-manager/add-token-container.jsx b/src/renderer/crypto-manager/add-token-container.jsx @@ -122,11 +122,14 @@ class AddTokenContainerComponent extends Component {
let found = (this.props.tokens || []).find(
t => (t['address'] || '').toUpperCase() === (contractAddress || '').toUpperCase()
... | 1 |
diff --git a/includes/Modules/Tag_Manager.php b/includes/Modules/Tag_Manager.php @@ -447,16 +447,13 @@ final class Tag_Manager extends Module
protected function get_datapoint_definitions() {
$map = parent::get_datapoint_definitions();
- // TODO: remove this once datapoint exists.
- if ( isset( $map['POST:create-contain... | 2 |
diff --git a/src/angular/projects/spark-angular/src/lib/directives/inputs/sprk-datepicker/sprk-datepicker.directive.ts b/src/angular/projects/spark-angular/src/lib/directives/inputs/sprk-datepicker/sprk-datepicker.directive.ts @@ -34,7 +34,16 @@ export class SprkDatepickerDirective implements OnInit {
...tdpConfig,
...... | 3 |
diff --git a/README.md b/README.md <div align="center">
-
+
# SpaceX Data REST API
@@ -27,11 +27,11 @@ GET https://api.spacexdata.com/v2/launches/latest
```json
{
- "flight_number":59,
+ "flight_number":60,
"launch_year":"2018",
- "launch... | 3 |
diff --git a/packages/create-snowpack-app/README.md b/packages/create-snowpack-app/README.md @@ -48,4 +48,5 @@ npx create-snowpack-app new-dir --template @snowpack/app-template-NAME [--use-ya
### Featured Community Plugins
- [@prefresh/snowpack](https://github.com/JoviDeCroock/prefresh)
+- [snowpack-plugin-import-map](... | 0 |
diff --git a/src/libs/actions/Session/index.js b/src/libs/actions/Session/index.js @@ -21,6 +21,7 @@ import * as ValidationUtils from '../../ValidationUtils';
import * as Authentication from '../../Authentication';
import * as ErrorUtils from '../../ErrorUtils';
import * as Welcome from '../Welcome';
+import * as API f... | 4 |
diff --git a/lib/assets/test/spec/builder/components/modals/add-layer/footer/guessing-toggler-view.spec.js b/lib/assets/test/spec/builder/components/modals/add-layer/footer/guessing-toggler-view.spec.js @@ -91,9 +91,9 @@ describe('components/modals/add-layer/footer/guessing-toggler-view', function ()
});
expect(uploadM... | 1 |
diff --git a/src/templates/workshop.js b/src/templates/workshop.js @@ -344,6 +344,7 @@ export default ({ data }) => {
src="/logo-red.svg"
w={`${theme.space[6]}px`}
style={{ display: 'inline' }}
+ alt="Hack Club logo"
/>{' '}
<strong>Computer Science Tutorials</strong>
</Text>
| 1 |
diff --git a/character-controller.js b/character-controller.js @@ -3,6 +3,7 @@ this file is responisible for maintaining player state that is network-replicate
*/
import * as THREE from 'three';
+import * as Y from 'yjs';
import {getRenderer, camera, dolly} from './renderer.js';
import physicsManager from './physics-ma... | 0 |
diff --git a/avatars/avatars.js b/avatars/avatars.js @@ -2249,7 +2249,8 @@ class Avatar {
};
const offset = offsets[walkRunAnimationName] ?? window.lol;
const _getStepIndex = timeSeconds => {
- const t1 = (timeSeconds + offset) % animation.duration;
+ const f = walkRunAnimationName === 'naruto run.fbx' ? narutoRunTimeF... | 0 |
diff --git a/README.md b/README.md @@ -87,7 +87,7 @@ You only need to include [tether.min.js](https://github.com/HubSpot/tether/blob/
```
Or just use a CDN:
```
-<script src="//cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha256-gL1ibrbVcRIHKlCO5OXOPC/lZz/gpdApgQAzskqqXp8=" crossorigin="anon... | 2 |
diff --git a/ui/controls.js b/ui/controls.js @@ -602,7 +602,7 @@ shaka.ui.Controls = class extends shaka.util.FakeEventTarget {
if (document.pictureInPictureElement) {
await document.exitPictureInPicture();
}
- await this.videoContainer_.requestFullscreen();
+ await this.videoContainer_.requestFullscreen({ "navigationU... | 11 |
diff --git a/src/views/about/l10n.json b/src/views/about/l10n.json "about.quotesDescription": "The Scratch Team has received many emails from youth, parents, and educators expressing thanks for Scratch. Want to see what people are saying? You can read a collection of the {quotesLink} we've received.",
"about.quotesLink... | 14 |
diff --git a/src/libs/actions/SignInRedirect.js b/src/libs/actions/SignInRedirect.js @@ -19,9 +19,13 @@ Onyx.connect({
});
let currentIsOffline;
+let currentShouldForceOffline;
Onyx.connect({
key: ONYXKEYS.NETWORK,
- callback: val => currentIsOffline = val.isOffline,
+ callback: (val) => {
+ currentIsOffline = val.isOf... | 8 |
diff --git a/src/redux/middlewares/GeolocationMiddleware/index.js b/src/redux/middlewares/GeolocationMiddleware/index.js import BackgroundGeolocation from 'react-native-background-geolocation'
+import i18n from '../../../i18n'
import { setBackgroundGeolocationEnabled } from '../../App/actions'
import { selectIsAuthenti... | 7 |
diff --git a/package.json b/package.json "noflo-runtime-postmessage": "^0.10.0",
"noflo-strings": "~0.4.0",
"observe-js": "^0.5.7",
- "octo": "git://github.com/bergie/octo.git#patched",
+ "octo": "git+https://github.com/bergie/octo.git#patched",
"react": "^15.6.0",
"react-dom": "^15.6.0",
"rtc": "^3.4.0",
| 11 |
diff --git a/src/encoded/static/components/award.js b/src/encoded/static/components/award.js @@ -664,13 +664,13 @@ class Award extends React.Component {
this.handleClick = this.handleClick.bind(this);
}
handleClick(organism) {
- // Create a copy of this.state.newtabs so we can manipulate it in peace.
+ // Create a copy... | 0 |
diff --git a/backend/app/app.auth.js b/backend/app/app.auth.js @@ -9,7 +9,7 @@ passport.use(
{
clientID: config.GOOGLE_CLIENT_ID,
clientSecret: config.GOOGLE_SECRET,
- callbackURL: config.GOOGLE_CALLBACK_URL,
+ callbackURL: config.GOOGLE_CALLBACK_URL
},
(accessToken, refreshToken, profile, cb) => {
const user = securit... | 7 |
diff --git a/app/shared/containers/Welcome/Key.js b/app/shared/containers/Welcome/Key.js @@ -117,6 +117,7 @@ class WelcomeKeyContainer extends Component<Props> {
account
} = settings;
const {
+ key,
visible
} = this.state;
let currentPublic;
@@ -254,7 +255,7 @@ class WelcomeKeyContainer extends Component<Props> {
<Form... | 4 |
diff --git a/stories/links.stories.js b/stories/links.stories.js @@ -45,11 +45,6 @@ storiesOf( 'Global', module ).add(
<p>
<Link>Default Link Button</Link>
</p>
- <p>
- <Link href="http://google.com" inherit>
- Inherited Link
- </Link>
- </p>
<p>
<Link href="http://google.com" small>
Small Link
| 2 |
diff --git a/chat-manager.js b/chat-manager.js @@ -95,10 +95,15 @@ class ChatManager extends EventTarget {
this.removePlayerMessage(localPlayer, m);
}
async waitForVoiceTurn(fn) {
+ // console.log('wait for voice queue', this.voiceRunning, this.voiceQueue.length);
+
if (!this.voiceRunning) {
this.voiceRunning = true;
+... | 0 |
diff --git a/packages/stockflux-watchlist/public/notification.css b/packages/stockflux-watchlist/public/notification.css @@ -20,7 +20,7 @@ body {
.notification .icon {
margin: auto 20px;
height: 28px;
- width: 45px;
+ width: 57px;
animation: eyeGif 1.5s steps(45, end) 1s forwards;
background: url('./animation-assets/ey... | 1 |
diff --git a/.storybook/storybook-data.js b/.storybook/storybook-data.js @@ -133,34 +133,6 @@ module.exports = [
},
},
},
- {
- id: 'dashboard--search-funnel-analytics-inactive',
- kind: 'Dashboard',
- name: 'Search Funnel Analytics Inactive',
- story: 'Search Funnel Analytics Inactive',
- parameters: {
- fileName: './... | 2 |
diff --git a/usage-based-subscriptions/README.md b/usage-based-subscriptions/README.md @@ -7,7 +7,7 @@ This sample shows how to create a customer, set up a card for recurring use, and
**Demo**
-See a hosted version of the [sample](https://2ow1q.sse.codesandbox.io/) in test mode or [fork on codesandbox.io](https://codes... | 0 |
diff --git a/core/selection.js b/core/selection.js import Parchment from 'parchment';
+import { InlineEmbed } from '../blots/embed';
import clone from 'clone';
import equal from 'deep-equal';
import Emitter from './emitter';
@@ -71,6 +72,27 @@ class Selection {
this.update(Emitter.sources.SILENT);
}
+ fixInlineEmbed(na... | 9 |
diff --git a/tests/js/jest.config.js b/tests/js/jest.config.js @@ -10,7 +10,7 @@ module.exports = {
coveragePathIgnorePatterns: [
'<rootDir>/build/',
'<rootDir>/node_modules/',
- 'assets/js/googlesitekit-*.js',
+ '<rootDir>/assets/js/googlesitekit-(.*)\.js',
],
coverageReporters: [
'html',
| 8 |
diff --git a/src/propTypes.js b/src/propTypes.js @@ -128,7 +128,7 @@ export default {
// Cells only
className: PropTypes.string,
style: PropTypes.object,
- getProps: PropTypes.object,
+ getProps: PropTypes.func,
// Pivot only
aggregate: PropTypes.func,
@@ -136,7 +136,7 @@ export default {
// Headers only
headerClassNam... | 1 |
diff --git a/userscript.user.js b/userscript.user.js @@ -55700,6 +55700,9 @@ var $$IMU_EXPORT$$;
}
var observe = function() {
+ if (!settings.imu_enabled)
+ return;
+
on_new_images();
if (!observer)
@@ -55724,6 +55727,12 @@ var $$IMU_EXPORT$$;
observer.disconnect();
};
+ var needs_observer = function() {
+ var highligh... | 9 |
diff --git a/shared/middlewares/csrf.js b/shared/middlewares/csrf.js @@ -10,15 +10,17 @@ import hostValidation from 'host-validation';
const trustedHosts = [
process.env.NOW_URL &&
new RegExp(`^${process.env.NOW_URL.replace('https://', '')}$`),
- /^spectrum.chat$/,
- /^alpha.spectrum.chat$/,
+ /^spectrum\.chat$/,
+ // ... | 11 |
diff --git a/src/views/preview/project-view.jsx b/src/views/preview/project-view.jsx @@ -446,7 +446,10 @@ class Preview extends React.Component {
}
}
handleRemix () {
+ // Update the state first before starting the remix to show spinner
+ this.setState({isRemixing: true}, () => {
this.props.remixProject();
+ });
}
hand... | 12 |
diff --git a/lib/assets/javascripts/new-dashboard/components/Onboarding/tutorials/CARTOframes/Step1.vue b/lib/assets/javascripts/new-dashboard/components/Onboarding/tutorials/CARTOframes/Step1.vue <template>
- <div class="u-width--100 u-pt--32 u-pr--10 u-pl--10">
+ <div class="u-width--100 u-pt--32 u-pr--10 u-pb--80 u-... | 1 |
diff --git a/src/user_interface.js b/src/user_interface.js @@ -153,11 +153,12 @@ class gltfUserInterface
function createElement(gltf)
{
self.renderingParameters.animationTimer.reset();
- self.renderingParameters.animationIndex = -1;
const animations = gltf !== undefined ? gltf.animations : [];
let indices = Object.keys... | 12 |
diff --git a/assets/src/libraries/Book.js b/assets/src/libraries/Book.js @@ -5,6 +5,7 @@ import FlatButton from 'material-ui/FlatButton';
// FIXME
import injectTapEventPlugin from 'react-tap-event-plugin';
injectTapEventPlugin();
+import BookDetail from './BookDetail';
export default class Book extends Component {
cons... | 0 |
diff --git a/userscript.user.js b/userscript.user.js @@ -45376,7 +45376,10 @@ var $$IMU_EXPORT$$;
"$1$2");
}
- if (domain === "d2l930y2yx77uc.cloudfront.net") {
+ if (domain === "d2l930y2yx77uc.cloudfront.net" ||
+ // https://assets.st-note.com/production/uploads/images/17105324/square_middle_c647f6629bcfe2638e23924d96... | 7 |
diff --git a/app/views/navbar.scala.html b/app/views/navbar.scala.html @@ -441,28 +441,28 @@ $(document).ready(function () {
var passwordConfirm = formData[3].value;
if(!username){
- invalidSignInUpAlert(false, @Messages("authenticate.error.missing.username"));
+ invalidSignInUpAlert(false, "@Messages("authenticate.err... | 1 |
diff --git a/scenes/treehouse.scn b/scenes/treehouse.scn "start_url": "https://webaverse.github.io/infinifruit/",
"dynamic": true
},
+ {
+ "position": [
+ 24,
+ 0,
+ 24
+ ],
+ "quaternion": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "physics": false,
+ "start_url": "https://webaverse.github.io/barrier/",
+ "dynamic": true
+ },
{
"pos... | 0 |
diff --git a/src/commands/test.js b/src/commands/test.js -const FeedSelector = require('../structs/FeedSelector.js')
+const { PromptNode } = require('discord.js-prompts')
+const commonPrompts = require('./prompts/common/index.js')
+const runWithFeedGuild = require('./prompts/runner/runWithFeedsProfile.js')
const Articl... | 5 |
diff --git a/server.js b/server.js @@ -22,12 +22,6 @@ const app = next({
quiet: false,
});
-function sleep(ms) {
- return new Promise((resolve) => {
- setTimeout(resolve, ms);
- });
-}
-
const handler = app.getRequestHandler();
const EXTERNAL_RESOURCES = {
| 2 |
diff --git a/docs/roadster.md b/docs/roadster.md @@ -7,7 +7,7 @@ Get info + orbital data for roadster
```http
GET https://api.spacexdata.com/v2/info/roadster
```
-**NOTE:** Data updated every 10 minutes
+**NOTE:** Data updated every 5 minutes
## Sample Response
```json
| 3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.